We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b60d3e commit 402f2e5Copy full SHA for 402f2e5
plotboss/plotboss.py
@@ -173,9 +173,9 @@ def run(self):
173
self.load_drives()
174
self.load_completed()
175
# 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()
+ job_thread = threading.Thread(target=self.manage_jobs)
+ job_thread.daemon = True
+ job_thread.start()
179
statistic_thread = threading.Thread(target=self.update_statistics)
180
statistic_thread.daemon = True
181
statistic_thread.start()
0 commit comments