Skip to content

Commit

Permalink
Merge pull request #64 from shibayan/fix/timeout
Browse files Browse the repository at this point in the history
Change default timeout is 5minues
  • Loading branch information
shibayan authored Mar 14, 2019
2 parents 2b5eab4 + c8fa197 commit 0aff5fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AzureAppService.LetsEncrypt/AddCertificate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public static async Task<HttpResponseMessage> HttpStart(

log.LogInformation($"Started orchestration with ID = '{instanceId}'.");

return await starter.WaitForCompletionOrCreateCheckStatusResponseAsync(req, instanceId, TimeSpan.FromSeconds(60));
return await starter.WaitForCompletionOrCreateCheckStatusResponseAsync(req, instanceId, TimeSpan.FromMinutes(5));
}
}

Expand Down

0 comments on commit 0aff5fa

Please sign in to comment.