Skip to content

Commit 402f2e5

Browse files
committed
fix manager jobs thread not started bug
1 parent 9b60d3e commit 402f2e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plotboss/plotboss.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ def run(self):
173173
self.load_drives()
174174
self.load_completed()
175175
# logger.debug('drives:', tmp=list(self.temp_drives), final=list(self.final_drives))
176-
# job_thread = threading.Thread(target=self.manage_jobs)
177-
# job_thread.daemon = True
178-
# job_thread.start()
176+
job_thread = threading.Thread(target=self.manage_jobs)
177+
job_thread.daemon = True
178+
job_thread.start()
179179
statistic_thread = threading.Thread(target=self.update_statistics)
180180
statistic_thread.daemon = True
181181
statistic_thread.start()

0 commit comments

Comments
 (0)