binary-caches-parallel-connections -> http-connections

This commit is contained in:
Eelco Dolstra 2017-04-20 14:04:00 +02:00
parent 4222402219
commit 562585e901
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
2 changed files with 4 additions and 3 deletions

View file

@ -404,7 +404,7 @@ flag, e.g. <literal>--option gc-keep-outputs false</literal>.</para>
</varlistentry>
<varlistentry><term><literal>binary-caches-parallel-connections</literal></term>
<varlistentry><term><literal>http-connections</literal></term>
<listitem><para>The maximum number of parallel TCP connections
used to fetch files from binary caches and by other downloads. It

View file

@ -216,8 +216,9 @@ public:
Setting<Strings> secretKeyFiles{this, {}, "secret-key-files",
"Secret keys with which to sign local builds."};
Setting<size_t> binaryCachesParallelConnections{this, 25, "binary-caches-parallel-connections",
"Number of parallel connections to binary caches."};
Setting<size_t> binaryCachesParallelConnections{this, 25, "http-connections",
"Number of parallel HTTP connections.",
{"binary-caches-parallel-connections"}};
Setting<bool> enableHttp2{this, true, "enable-http2",
"Whether to enable HTTP/2 support."};