mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-26 07:26:41 +00:00
minor fix in Wait.wait log message text
This commit is contained in:
+1
-1
@@ -91,7 +91,7 @@ implements ApplicationProcessHost<ShardingKey, MetricsT, ProcessT> {
|
||||
if (sshChannel != null) { // could, e.g., have timed out
|
||||
try {
|
||||
final JSONArray serverDirectoriesAndPorts = Wait.wait(()->getServerDirectoriesAndPorts(sshChannel), sdap->true, /* retryOnException */ true,
|
||||
optionalTimeout, /* sleepBetweenAttempts */ Duration.ONE_MINUTE, Level.INFO, "Couldn't parse JSON response describing application processes on host "+this);
|
||||
optionalTimeout, /* sleepBetweenAttempts */ Duration.ONE_MINUTE, Level.INFO, "Parsing JSON response describing application processes on host "+this);
|
||||
for (final Object serverDirectoryAndPort : serverDirectoriesAndPorts) {
|
||||
final JSONObject serverDirectoryAndPortObject = (JSONObject) serverDirectoryAndPort;
|
||||
ProcessT process;
|
||||
|
||||
Reference in New Issue
Block a user