Skip to content
This repository was archived by the owner on Apr 10, 2024. It is now read-only.

Commit 5d4ebc9

Browse files
authored
Health check on startup is expected to fail, change log level from warning to debug (#97) (#136)
Health check on startup is expected to fail, change log level from warning to debug (#97)
1 parent b00b9ae commit 5d4ebc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/io/javaoperatorsdk/jenvtest/process/ProcessReadinessChecker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ private boolean ready(HttpClient client, HttpRequest request, String processName
112112
return response.statusCode() == 200;
113113
} catch (ConnectException e) {
114114
// still want to retry
115-
log.warn("Cannot connect to the server", e);
115+
log.debug("Cannot connect to the server", e);
116116
return false;
117117
} catch (IOException e) {
118118
throw new JenvtestException(e);

0 commit comments

Comments
 (0)