@@ -438,7 +438,6 @@ class Delayable:
438438 "description" ,
439439 "channel" ,
440440 "identity_key" ,
441- "on_fail_method" ,
442441 )
443442 __slots__ = _properties + (
444443 "recordset" ,
@@ -458,7 +457,6 @@ def __init__(
458457 description = None ,
459458 channel = None ,
460459 identity_key = None ,
461- on_fail_method = None ,
462460 ):
463461 self ._graph = DelayableGraph ()
464462 self ._graph .add_vertex (self )
@@ -471,7 +469,6 @@ def __init__(
471469 self .description = description
472470 self .channel = channel
473471 self .identity_key = identity_key
474- self .on_fail_method = on_fail_method
475472
476473 self ._job_method = None
477474 self ._job_args = ()
@@ -550,7 +547,6 @@ def split(self, size, chain=False):
550547 description = self .description ,
551548 channel = self .channel ,
552549 identity_key = self .identity_key ,
553- on_fail_method = self .on_fail_method ,
554550 )
555551 # Update the __self__
556552 delayable ._job_method = getattr (recordset , self ._job_method .__name__ )
@@ -587,7 +583,6 @@ def _build_job(self):
587583 description = self .description ,
588584 channel = self .channel ,
589585 identity_key = self .identity_key ,
590- on_fail_method = self .on_fail_method ,
591586 )
592587 return self ._generated_job
593588
@@ -638,7 +633,6 @@ def __init__(
638633 description = None ,
639634 channel = None ,
640635 identity_key = None ,
641- on_fail_method = None ,
642636 ):
643637 self .delayable = Delayable (
644638 recordset ,
@@ -648,7 +642,6 @@ def __init__(
648642 description = description ,
649643 channel = channel ,
650644 identity_key = identity_key ,
651- on_fail_method = on_fail_method ,
652645 )
653646
654647 @property
0 commit comments