File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -255,9 +255,8 @@ def retry_job(self, delay: int | None = None):
255
255
job = load_job (self .job_class , self .parameters )
256
256
class_delay = job .get_retry_delay (retry_attempt )
257
257
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.
261
260
logger .exception (e )
262
261
class_delay = None
263
262
You can’t perform that action at this time.
0 commit comments