ociswrapper: break wait if server responds with 200

This commit is contained in:
Saw-jan
2023-09-21 17:00:29 +05:45
parent 3c364742c8
commit d4be6a83a7

View File

@@ -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