From 08608af68a6a429c9dfb5e0131f46c691c3d8847 Mon Sep 17 00:00:00 2001 From: Javier Calvarro Nelson Date: Tue, 22 Oct 2019 12:04:07 +0200 Subject: [PATCH] [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. --- src/Components/Ignitor/src/BlazorClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Ignitor/src/BlazorClient.cs b/src/Components/Ignitor/src/BlazorClient.cs index df93faa3b3..67737d5bb4 100644 --- a/src/Components/Ignitor/src/BlazorClient.cs +++ b/src/Components/Ignitor/src/BlazorClient.cs @@ -31,7 +31,7 @@ namespace Ignitor }); } - public TimeSpan? DefaultConnectionTimeout { get; set; } = TimeSpan.FromSeconds(10); + public TimeSpan? DefaultConnectionTimeout { get; set; } = TimeSpan.FromSeconds(20); public TimeSpan? DefaultOperationTimeout { get; set; } = TimeSpan.FromMilliseconds(500); ///