Skip to content

Commit a952311

Browse files
committed
Update job comment
1 parent 3aeff3f commit a952311

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bolt-jobs/bolt/jobs/models.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,8 @@ def retry_job(self, delay: int | None = None):
255255
job = load_job(self.job_class, self.parameters)
256256
class_delay = job.get_retry_delay(retry_attempt)
257257
except Exception as e:
258-
# Could fail for various reasons -- most likely with parameters loading (model instance lookup, etc.).
259-
# Ideally we wouldn't instantiate the job at all here and risk any of the loading stuff at this stage.
260-
# The .get_retry_delay could maybe be a class method, but it is nice to have access to the instance...
258+
# If this fails at all (loading model instance from str, class not existing, user code error)
259+
# then we just continue without a delay. The job request itself can handle the failure like normal.
261260
logger.exception(e)
262261
class_delay = None
263262

0 commit comments

Comments
 (0)