We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c045a commit 734fa67Copy full SHA for 734fa67
tests/durabletask/test_orchestration_e2e.py
@@ -582,11 +582,11 @@ def test_retry_timeout():
582
# So, the 5th attempt (which would happen at 1.75s) should not be made.
583
throw_activity_counter = 0
584
retry_policy = task.RetryPolicy(
585
- first_retry_interval=timedelta(seconds=0.25),
+ first_retry_interval=timedelta(seconds=1),
586
max_number_of_attempts=5,
587
backoff_coefficient=2,
588
- max_retry_interval=timedelta(seconds=2),
589
- retry_timeout=timedelta(seconds=1.7), # Set just before 4th attempt
+ max_retry_interval=timedelta(seconds=10),
+ retry_timeout=timedelta(seconds=13), # Set just before 4th attempt
590
)
591
592
def mock_orchestrator(ctx: task.OrchestrationContext, _):
0 commit comments