Skip to content

Commit

Permalink
Merge pull request #393 from dabutvin/timeout
Browse files Browse the repository at this point in the history
bump up timeout even further
  • Loading branch information
dabutvin committed May 20, 2019
2 parents d78b6f3 + cba45bc commit 3c323cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CompressImagesFunction/CompressImages.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ private static CompressionResult[] OptimizeImages(Repository repo, string localP
// returns true if the Task completed execution within the allotted time; otherwise, false.
// Cancel and continue with the rest
if (task.Wait(60 * 1000) == false)
if (task.Wait(600 * 1000) == false)
{
logger.LogInformation("Timeout processing {Image}", image);
tokenSource.Cancel();
Expand Down

0 comments on commit 3c323cb

Please sign in to comment.