Skip to content

Commit

Permalink
ema_ipyparallel: Bug/spelling fix: deamon --> daemon
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutH committed Oct 18, 2022
1 parent 3d37914 commit 2b3d387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ema_workbench/em_framework/ema_ipyparallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def starter():
pass

logwatcher_thread = threading.Thread(target=starter)
logwatcher_thread.deamon = True
logwatcher_thread.daemon = True
logwatcher_thread.start()

return logwatcher, logwatcher_thread
Expand Down
2 changes: 1 addition & 1 deletion test/test_em_framework/test_ema_ipyparallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def setUpClass(cls):
def tearDownClass(cls):
cls.watcher.stop()
# TODO use some way to signal the thread to terminate
# despite that it is a deamon thread
# despite that it is a daemon thread

def tearDown(self):
self.client.clear(block=True)
Expand Down

0 comments on commit 2b3d387

Please sign in to comment.