Fix log level on push failure (#16862)

This commit is contained in:
Eric Liang 2021-07-03 14:14:37 -07:00 committed by GitHub
parent 63ce4b4e97
commit 172b54382d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -474,7 +474,7 @@ void ObjectManager::PushObjectInternal(
auto rpc_client = GetRpcClient(node_id);
if (!rpc_client) {
// Push is best effort, so do nothing here.
RAY_LOG(ERROR)
RAY_LOG(INFO)
<< "Failed to establish connection for Push with remote object manager.";
return;
}