We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 917f036 commit d150fabCopy full SHA for d150fab
bolt-worker/bolt/worker/workers.py
@@ -73,6 +73,10 @@ def run(self):
73
future = self.executor.submit(process_job, job_uuid)
74
future.add_done_callback(partial(future_finished_callback, job_uuid))
75
76
+ # Do a quick sleep regardless to see if it
77
+ # gives processes a chance to start up
78
+ time.sleep(0.1)
79
+
80
def shutdown(self):
81
if self._is_shutting_down:
82
# Already shutting down somewhere else
0 commit comments