Skip to content

Commit

Permalink
fix distributed test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed Nov 9, 2021
1 parent 12c02b4 commit 44bbbd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cupyx/distributed/_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ def _server_loop(self, host, port):
continue

t = threading.Thread(
target=self._process_request, args=(c_socket,))
t.setDaemon(True)
target=self._process_request,
args=(c_socket,), daemon=True)
t.start()

def run(self, host=_DEFAULT_HOST, port=_DEFAULT_PORT):
Expand Down

0 comments on commit 44bbbd1

Please sign in to comment.