diff --git a/main.go b/main.go index b08d8a2..78e1a3a 100644 --- a/main.go +++ b/main.go @@ -141,7 +141,7 @@ func checkIfSupported(e *parsecli.Env, version string, mode string, args ...stri select { case res := <-timeout: return res.warning, stackerr.Wrap(res.err) - case <-time.After(time.Duration(500) * time.Millisecond): + case <-time.After(time.Second): return "", nil } return "", nil diff --git a/parsecli/main.go b/parsecli/main.go index 7e1eca6..914dfd7 100644 --- a/parsecli/main.go +++ b/parsecli/main.go @@ -22,7 +22,7 @@ import ( ) const ( - Version = "3.0.0" + Version = "3.0.1" CloudDir = "cloud" HostingDir = "public" DefaultBaseURL = "https://api.parse.com/1/"