mirror of
https://github.com/wassname/ray.git
synced 2026-09-12 12:51:15 +08:00
remove UniqueIDHasher (#1957)
* remove UniqueIDHasher * Format the change * remove unused line * Fix format * fix lint error * fix linting whitespace
This commit is contained in:
@@ -179,12 +179,11 @@ class ObjectManager {
|
||||
ConnectionPool connection_pool_;
|
||||
|
||||
/// Timeout for failed pull requests.
|
||||
std::unordered_map<ObjectID, std::shared_ptr<boost::asio::deadline_timer>,
|
||||
UniqueIDHasher>
|
||||
std::unordered_map<ObjectID, std::shared_ptr<boost::asio::deadline_timer>>
|
||||
pull_requests_;
|
||||
|
||||
/// Cache of locally available objects.
|
||||
std::unordered_map<ObjectID, ObjectInfoT, UniqueIDHasher> local_objects_;
|
||||
std::unordered_map<ObjectID, ObjectInfoT> local_objects_;
|
||||
|
||||
/// Handle starting, running, and stopping asio io_service.
|
||||
void StartIOService();
|
||||
|
||||
Reference in New Issue
Block a user