mirror of
https://github.com/NixOS/nix.git
synced 2024-11-21 22:32:26 +00:00
Warn if the download buffer is full
(cherry picked from commit f6a9a71b38
)
This commit is contained in:
parent
56140d974e
commit
682f60b4f7
@ -837,6 +837,8 @@ void FileTransfer::download(
|
||||
sender.) */
|
||||
if (state->data.size() > fileTransferSettings.downloadBufferSize) {
|
||||
debug("download buffer is full; going to sleep");
|
||||
static bool haveWarned = false;
|
||||
warnOnce(haveWarned, "download buffer is full; consider increasing the 'download-buffer-size' setting");
|
||||
state.wait_for(state->request, std::chrono::seconds(10));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user