mirror of
https://github.com/wassname/ray.git
synced 2026-07-26 13:37:24 +08:00
[Java] Fix output parsing in RunManager (#12968)
* Fix output parsing in RunManager * change log level Co-authored-by: 灵洵 <fengbin.ffb@antgroup.com>
This commit is contained in:
@@ -209,11 +209,15 @@ void ServiceBasedGcsClient::ReconnectGcsServer() {
|
||||
return;
|
||||
}
|
||||
|
||||
RAY_LOG(INFO) << "Attemptting to reconnect to GCS server: " << address.first << ":"
|
||||
<< address.second;
|
||||
RAY_LOG(DEBUG) << "Attemptting to reconnect to GCS server: " << address.first << ":"
|
||||
<< address.second;
|
||||
if (Ping(address.first, address.second, 100)) {
|
||||
RAY_LOG(INFO) << "Reconnected to GCS server: " << address.first << ":"
|
||||
<< address.second;
|
||||
// If `last_reconnect_address_` port is -1, it means that this is the first
|
||||
// connection and no log will be printed.
|
||||
if (last_reconnect_address_.second != -1) {
|
||||
RAY_LOG(INFO) << "Reconnected to GCS server: " << address.first << ":"
|
||||
<< address.second;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user