Changeset 15350
- Timestamp:
- 09/06/17 11:13:46 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/HeuristicLab.HiveDrain/HeuristicLab.HiveDrain/JobTaskOneFileDownloader.cs
r15347 r15350 76 76 downloader.StartAsync(); 77 77 78 while (!downloader.IsFinished ) {78 while (!downloader.IsFinished || finishedCount < totalJobCount) { 79 79 if (finishedCount != downloader.FinishedCount) { 80 80 finishedCount = downloader.FinishedCount; 81 81 log.LogMessage(string.Format("Downloading/deserializing tasks... ({0}/{1} finished)", finishedCount, totalJobCount)); 82 } 83 84 Thread.Sleep(500); 85 86 if (downloader.IsFaulted) { 87 throw downloader.Exception; 82 88 } 83 89 }
Note: See TracChangeset
for help on using the changeset viewer.