Skip to content

Commit

Permalink
Remove cancel_futures args (NVIDIA#2457)
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanTingHsieh committed Apr 18, 2024
1 parent 8e89d66 commit b4c3ed0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nvflare/apis/utils/reliable_message.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def shutdown(cls):
"""
if not cls._shutdown_asked:
cls._shutdown_asked = True
cls._executor.shutdown(cancel_futures=True, wait=False)
cls._executor.shutdown(wait=False)
cls._logger.info("ReliableMessage is shutdown")

@classmethod
Expand Down

0 comments on commit b4c3ed0

Please sign in to comment.