Skip to content

Commit

Permalink
[KVStore] Fix a small bug (dmlc#1686)
Browse files Browse the repository at this point in the history
* update

* update

* update

* update

* update
  • Loading branch information
aksnzhy authored Jun 23, 2020
1 parent 86c243b commit 7afd1d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/dgl/distributed/kvstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -829,7 +829,7 @@ def pull_handler(data_store, name, local_offset)
for server_id in range(self._server_count):
rpc.send_request(server_id, request)
# recv response from all the server nodes
for _ in range(self._server_namebook):
for _ in range(self._server_count):
response = rpc.recv_response()
assert response.msg == REGISTER_PULL_MSG
self._pull_handlers[name] = func
Expand Down

0 comments on commit 7afd1d0

Please sign in to comment.