Skip to content

Commit 08608af

Browse files
authored
[Blazor] Fixes reliability issues in the blazor reliability tests (#15223)
Some tests get stuck when run on the CI likely due to spikes on the CI machine load. This fix doubles the startup timeout of the reliability tests to account for that.
1 parent c1389d7 commit 08608af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/Ignitor/src/BlazorClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public BlazorClient()
3131
});
3232
}
3333

34-
public TimeSpan? DefaultConnectionTimeout { get; set; } = TimeSpan.FromSeconds(10);
34+
public TimeSpan? DefaultConnectionTimeout { get; set; } = TimeSpan.FromSeconds(20);
3535
public TimeSpan? DefaultOperationTimeout { get; set; } = TimeSpan.FromMilliseconds(500);
3636

3737
/// <summary>

0 commit comments

Comments
 (0)