mirror of
https://github.com/wassname/ray.git
synced 2026-06-27 17:49:47 +08:00
fix unused lambda capture (#2102)
This commit is contained in:
committed by
Robert Nishihara
parent
f1da721522
commit
eba73449cc
@@ -171,7 +171,7 @@ ray::Status ObjectManager::PullEstablishConnection(const ObjectID &object_id,
|
||||
Status pull_send_status = PullSendRequest(object_id, async_conn);
|
||||
RAY_CHECK_OK(pull_send_status);
|
||||
},
|
||||
[this, object_id](const Status &status) {
|
||||
[](const Status &status) {
|
||||
RAY_LOG(ERROR) << "Failed to establish connection with remote object manager.";
|
||||
RAY_CHECK_OK(status);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user