We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a51a55e + 96014b7 commit 57334c0Copy full SHA for 57334c0
1 file changed
cli/polyaxon/_client/workers/base_worker.py
@@ -31,7 +31,7 @@ def start(self):
31
try:
32
if not self.is_alive():
33
self._thread = threading.Thread(target=self._target, name=self.NAME)
34
- self._thread.setDaemon(True)
+ self._thread.daemon = True
35
self._thread.start()
36
self._thread_for_pid = os.getpid()
37
finally:
0 commit comments