MCPcopy Index your code
hub / github.com/plotly/dash / job_running

Method job_running

dash/background_callback/managers/celery_manager.py:73–81  ·  view source on GitHub ↗
(self, job)

Source from the content-addressed store, hash-verified

71 return False
72
73 def job_running(self, job):
74 future = self.get_task(job)
75 return future and future.status in (
76 "PENDING",
77 "RECEIVED",
78 "STARTED",
79 "RETRY",
80 "PROGRESS",
81 )
82
83 def make_job_fn(self, fn, progress, key=None):
84 return _make_job_fn(fn, self.handle, progress, key)

Calls 1

get_taskMethod · 0.95