Skip to content

Commit

Permalink
[debug] fix missing param request in async client
Browse files Browse the repository at this point in the history
  • Loading branch information
dunzeng committed Apr 10, 2022
1 parent 59d9926 commit 86242fe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fedlab/core/client/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ def main_loop(self):
while True:
# request model actively
self._LOGGER.info("request parameter procedure")

self._network.send(message_code=MessageCode.ParameterRequest, src=0)

# waits for data from
sender_rank, message_code, payload = self._network.recv(src=0)
# sender_rank, message_code, payload = PackageProcessor.recv_package(src=0)
Expand Down

0 comments on commit 86242fe

Please sign in to comment.