Skip to content

Commit cd77cd8

Browse files
committed
fix flakey RetrySagaWithUserTaskScenario test on slower build agents
1 parent 5819629 commit cd77cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/WorkflowCore.IntegrationTests/Scenarios/RetrySagaWithUserTaskScenario.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private static async Task<IReadOnlyCollection<OpenUserAction>> WaitForUserStepAs
139139
var openActions = instance.GetOpenUserActions()?.ToList();
140140
while ((openActions?.Count ?? 0) == 0)
141141
{
142-
await Task.Delay(TimeSpan.FromMilliseconds(10));
142+
await Task.Delay(TimeSpan.FromMilliseconds(100));
143143
openActions = instance.GetOpenUserActions()?.ToList();
144144
if (delayCount-- == 0)
145145
{

0 commit comments

Comments
 (0)