Increase HttpClient timeout

This commit is contained in:
BrennanConroy 2016-09-08 09:59:20 -07:00
parent 3ad40bacdd
commit 5dc14acc32
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ namespace E2ETests
var httpClient = new HttpClient(httpClientHandler) var httpClient = new HttpClient(httpClientHandler)
{ {
BaseAddress = new Uri(deploymentResult.ApplicationBaseUri), BaseAddress = new Uri(deploymentResult.ApplicationBaseUri),
Timeout = TimeSpan.FromSeconds(5), Timeout = TimeSpan.FromSeconds(15),
}; };
using (httpClient) using (httpClient)