Skip to content

Commit

Permalink
Health check on startup is expected to fail, change log level from wa…
Browse files Browse the repository at this point in the history
…rning to debug (java-operator-sdk#97)
  • Loading branch information
BramMeerten committed Nov 22, 2023
1 parent 9120fc5 commit 661579d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ private boolean ready(HttpClient client, HttpRequest request, String processName
return response.statusCode() == 200;
} catch (ConnectException e) {
// still want to retry
log.warn("Cannot connect to the server", e);
log.debug("Cannot connect to the server", e);
return false;
} catch (IOException e) {
throw new JenvtestException(e);
Expand Down

0 comments on commit 661579d

Please sign in to comment.