diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2018-05-10T10·06+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2018-05-10T10·06+0200 |
commit | 2b3c1b3a889cf8f2c210b71b208b9e14fc8fb6a6 (patch) | |
tree | a6751a0967a7396912f645f97a85c1e8b7717843 /src/libstore/s3-binary-cache-store.cc | |
parent | 38def176271c97a427febaf381a32bebe6b3790b (diff) |
Remove mention of default since we already know the default
Diffstat (limited to 'src/libstore/s3-binary-cache-store.cc')
-rw-r--r-- | src/libstore/s3-binary-cache-store.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/s3-binary-cache-store.cc b/src/libstore/s3-binary-cache-store.cc index 96673a5b0cc4..103f141a1a11 100644 --- a/src/libstore/s3-binary-cache-store.cc +++ b/src/libstore/s3-binary-cache-store.cc @@ -174,7 +174,7 @@ struct S3BinaryCacheStoreImpl : public S3BinaryCacheStore const Setting<std::string> lsCompression{this, "", "ls-compression", "compression method for .ls files"}; const Setting<std::string> logCompression{this, "", "log-compression", "compression method for log/* files"}; const Setting<uint64_t> bufferSize{ - this, 5 * 1024 * 1024, "buffer-size", "size (in bytes) of each part in multi-part uploads. defaults to 5Mb"}; + this, 5 * 1024 * 1024, "buffer-size", "size (in bytes) of each part in multi-part uploads"}; std::string bucketName; |