Increase the minimum download timeout

This commit is contained in:
Nate McMaster 2017-09-20 17:44:34 -07:00
parent 34e10f7b2c
commit f87c9d9fb5
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ namespace RepoTasks
}
var all = Task.WhenAll(tasks);
var wait = TimeSpan.FromSeconds(Math.Max(downloadCount * 5, 30));
var wait = TimeSpan.FromSeconds(Math.Max(downloadCount * 5, 120));
var delay = Task.Delay(wait);
var finished = await Task.WhenAny(all, delay);