Merge pull request #1707 from dtzWill/fix/issue-1692

ignore "interrupted" exception in progress callback
This commit is contained in:
Peter Simons
2018-04-21 16:51:19 +02:00
committed by GitHub
+5 -1
View File
@@ -173,7 +173,11 @@ struct CurlDownloader : public Downloader
int progressCallback(double dltotal, double dlnow)
{
act.progress(dlnow, dltotal);
try {
act.progress(dlnow, dltotal);
} catch (nix::Interrupted &) {
assert(_isInterrupted);
}
return _isInterrupted;
}