mirror of
https://github.com/wassname/ray.git
synced 2026-08-12 12:20:11 +08:00
Fix unused lambda capture compilation error. (#1844)
* Fix unused lambda capture compilation error. * Fix linting.
This commit is contained in:
committed by
Philipp Moritz
parent
79d37ce240
commit
0b7ad668ff
@@ -88,8 +88,7 @@ ray::Status NodeManager::RegisterGcs() {
|
||||
HeartbeatAdded(client, id, heartbeat_data);
|
||||
};
|
||||
RAY_RETURN_NOT_OK(gcs_client_->heartbeat_table().Subscribe(
|
||||
UniqueID::nil(), UniqueID::nil(), heartbeat_added,
|
||||
[this](gcs::AsyncGcsClient *client) {
|
||||
UniqueID::nil(), UniqueID::nil(), heartbeat_added, [](gcs::AsyncGcsClient *client) {
|
||||
RAY_LOG(DEBUG) << "heartbeat table subscription done callback called.";
|
||||
}));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user