Merge pull request #12317 from kusold/patch-1

Add unit of measurement for download-buffer-size
This commit is contained in:
Eelco Dolstra
2025-01-20 23:42:59 +01:00
committed by GitHub

View File

@@ -50,8 +50,9 @@ struct FileTransferSettings : Config
Setting<size_t> downloadBufferSize{this, 64 * 1024 * 1024, "download-buffer-size",
R"(
The size of Nix's internal download buffer during `curl` transfers. If data is
The size of Nix's internal download buffer in bytes during `curl` transfers. If data is
not processed quickly enough to exceed the size of this buffer, downloads may stall.
The default is 67108864 (64 MiB).
)"};
};