Skip to content

Commit df310f8

Browse files
committed
slow async too
Signed-off-by: Filinto Duran <1373693+filintod@users.noreply.github.com>
1 parent 734fa67 commit df310f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/durabletask/test_orchestration_e2e_async.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,11 +428,11 @@ async def test_retry_timeout():
428428
# So, the 5th attempt (which would happen at 1.75s) should not be made.
429429
throw_activity_counter = 0
430430
retry_policy = task.RetryPolicy(
431-
first_retry_interval=timedelta(seconds=0.25),
431+
first_retry_interval=timedelta(seconds=1),
432432
max_number_of_attempts=5,
433433
backoff_coefficient=2,
434-
max_retry_interval=timedelta(seconds=2),
435-
retry_timeout=timedelta(seconds=1.7), # Set just before 4th attempt
434+
max_retry_interval=timedelta(seconds=10),
435+
retry_timeout=timedelta(seconds=13), # Set just before 4th attempt
436436
)
437437

438438
def mock_orchestrator(ctx: task.OrchestrationContext, _):

0 commit comments

Comments
 (0)