diff --git a/wait/http.go b/wait/http.go index ff0d02cf1d..ba89dca62d 100644 --- a/wait/http.go +++ b/wait/http.go @@ -46,7 +46,7 @@ func NewHTTPStrategy(path string) *HTTPStrategy { TLSConfig: nil, Method: http.MethodGet, Body: nil, - PollInterval: 100 * time.Second, + PollInterval: time.Second / 10, } } @@ -91,7 +91,6 @@ func (ws *HTTPStrategy) WithAllowInsecure(allowInsecure bool) *HTTPStrategy { return ws } - func (ws *HTTPStrategy) WithMethod(method string) *HTTPStrategy { ws.Method = method return ws