Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.

Commit eba80dd

Browse files
committed
Merge pull request #210 from XeroAPI/LongerTimeout
Make the timeout 5 and a half minutes
2 parents b432fa9 + c095bcc commit eba80dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Xero.Api/Infrastructure/Http/HttpClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Xero.Api.Infrastructure.Http
1414
// It uses IAuthenticator or ICertificateAuthenticator to do the signing
1515
internal class HttpClient
1616
{
17-
static readonly int defaultTimeout = (int)TimeSpan.FromMinutes(5).TotalMilliseconds;
17+
static readonly int defaultTimeout = (int)TimeSpan.FromMinutes(5.5).TotalMilliseconds;
1818

1919
private readonly string _baseUri;
2020
private readonly IAuthenticator _auth;

0 commit comments

Comments
 (0)