about summary refs log tree commit diff
path: root/src/libstore/globals.hh
diff options
context:
space:
mode:
authorAmineChikhaoui <amine.chikhaoui91@gmail.com>2018-02-07T20·06+0100
committerAmineChikhaoui <amine.chikhaoui91@gmail.com>2018-02-07T20·06+0100
commit47ad88099b1cd2b19bdf3eef35c21baf35cc7e82 (patch)
treebf39959c1b762e1b6d73bf2e8fcbe04afe63da50 /src/libstore/globals.hh
parent55ecdfe2a83a161c27d6497733cdc60fa112a43d (diff)
move the parallel-compression setting to binary-cache-store, the setting
can be done now from the url e.g s3://nix-cache?parallel-compression=1
instead of nix.conf.
Diffstat (limited to '')
-rw-r--r--src/libstore/globals.hh3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libstore/globals.hh b/src/libstore/globals.hh
index aafec2ea26..20ac8fe4e9 100644
--- a/src/libstore/globals.hh
+++ b/src/libstore/globals.hh
@@ -174,9 +174,6 @@ public:
         "Whether to compress logs.",
         {"build-compress-log"}};
 
-    Setting<bool> parallelCompression{this, false, "parallel-compression",
-        "Whether to enable parallel compression, only supported with xz currently"};
-
     Setting<unsigned long> maxLogSize{this, 0, "max-build-log-size",
         "Maximum number of bytes a builder can write to stdout/stderr "
         "before being killed (0 means no limit).",