mirror of
https://github.com/NixOS/nix.git
synced 2025-11-15 15:02:42 +01:00
actDownload -> actDataTransfer
This commit is contained in:
parent
c4c1ae0a00
commit
a0c5931208
5 changed files with 7 additions and 7 deletions
|
|
@ -361,7 +361,7 @@ public:
|
|||
{
|
||||
actDerivations.progress(doneBuilds, expectedBuilds + doneBuilds, runningBuilds, failedBuilds);
|
||||
actSubstitutions.progress(doneSubstitutions, expectedSubstitutions + doneSubstitutions, runningSubstitutions, failedSubstitutions);
|
||||
act.setExpected(actDownload, expectedDownloadSize + doneDownloadSize);
|
||||
act.setExpected(actDataTransfer, expectedDownloadSize + doneDownloadSize);
|
||||
act.setExpected(actCopyPath, expectedNarSize + doneNarSize);
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -77,7 +77,7 @@ struct curlDataTransfer : public DataTransfer
|
|||
Callback<DataTransferResult> && callback)
|
||||
: dataTransfer(dataTransfer)
|
||||
, request(request)
|
||||
, act(*logger, lvlTalkative, actDownload,
|
||||
, act(*logger, lvlTalkative, actDataTransfer,
|
||||
fmt(request.data ? "uploading '%s'" : "downloading '%s'", request.uri),
|
||||
{request.uri}, request.parentAct)
|
||||
, callback(std::move(callback))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue