MCPcopy Create free account
hub / github.com/Emmimal/control-layer / should_retry

Method should_retry

control_layer.py:635–640  ·  view source on GitHub ↗
(self, failure_mode: FailureMode, attempt: int)

Source from the content-addressed store, hash-verified

633 )
634
635 def should_retry(self, failure_mode: FailureMode, attempt: int) -> bool:
636 if attempt >= self.config.max_attempts:
637 return False
638 if failure_mode in NO_RETRY_MODES:
639 return False
640 return True
641
642 def jittered_delay_s(self, attempt: int) -> float:
643 """

Calls

no outgoing calls