Retry Policy
graphorchestrator.core.retry
RetryPolicy
dataclass
Defines a retry policy with configurable parameters.
Attributes:
Name | Type | Description |
---|---|---|
max_retries |
int
|
The maximum number of times to retry an operation. |
delay |
float
|
The initial delay in seconds before the first retry. |
backoff |
float
|
The factor by which to increase the delay after each retry. |
Source code in graphorchestrator\core\retry.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|