diff --git a/tests/ociswrapper/ocis/ocis.go b/tests/ociswrapper/ocis/ocis.go index a38f4b8168..0d9ff319b2 100644 --- a/tests/ociswrapper/ocis/ocis.go +++ b/tests/ociswrapper/ocis/ocis.go @@ -120,11 +120,7 @@ func WaitForConnection() bool { req.Header.Set("X-Request-ID", "ociswrapper-"+strconv.Itoa(int(time.Now().UnixMilli()))) res, err := client.Do(req) - if err != nil || res.StatusCode >= 400 { - if res != nil { - log.Println(fmt.Sprintf("oCIS server up but request failed: %v", res.StatusCode)) - return true - } + if err != nil || res.StatusCode != 200 { // 500 milliseconds poll interval time.Sleep(500 * time.Millisecond) continue