From c3ef4a2a56174ba40a1ba075d357c613012d8aab Mon Sep 17 00:00:00 2001 From: EvanSnapp Date: Fri, 16 Sep 2016 11:36:38 -0500 Subject: [PATCH] Hardcoded wait to fix github evental consistency wei' --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 8ca073b..ceff855 100644 --- a/main.go +++ b/main.go @@ -265,6 +265,7 @@ func main() { client := &http.Client{ Timeout: time.Second * 60, } + time.Sleep(3000 * time.Millisecond) //give github time to be consisitent for index, request := range cowpokeRequests { doRequest(catalogCreationCheckRequests[index], request, client) }