Increase HttpClient timeout
This commit is contained in:
parent
3ad40bacdd
commit
5dc14acc32
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue