From 5dc14acc32b2cdb9b423186da0ce48ce6a5cf8be Mon Sep 17 00:00:00 2001 From: BrennanConroy Date: Thu, 8 Sep 2016 09:59:20 -0700 Subject: [PATCH] Increase HttpClient timeout --- test/E2ETests/SmokeTestHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/SmokeTestHelper.cs b/test/E2ETests/SmokeTestHelper.cs index 6c057b17e0..78d35dac7c 100644 --- a/test/E2ETests/SmokeTestHelper.cs +++ b/test/E2ETests/SmokeTestHelper.cs @@ -15,7 +15,7 @@ namespace E2ETests var httpClient = new HttpClient(httpClientHandler) { BaseAddress = new Uri(deploymentResult.ApplicationBaseUri), - Timeout = TimeSpan.FromSeconds(5), + Timeout = TimeSpan.FromSeconds(15), }; using (httpClient)