diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-04-06T12·30+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-04-06T12·30+0200 |
commit | 256940fc48a6db950136fb0bc43590b701a3e857 (patch) | |
tree | 33ce2b1e13f0aba27d4046c5fa2364a758583520 /src/libutil/sync.hh | |
parent | 8decb07c31581febab664bedde12c8bf1367279e (diff) |
nix-daemon: Disable path info cache
This is useless because the client also caches path info, and can cause problems for long-running clients like hydra-queue-runner (i.e. it may return cached info about paths that have been garbage-collected).
Diffstat (limited to 'src/libutil/sync.hh')
-rw-r--r-- | src/libutil/sync.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/sync.hh b/src/libutil/sync.hh index 2aa074299b23..611c900e0a32 100644 --- a/src/libutil/sync.hh +++ b/src/libutil/sync.hh @@ -33,6 +33,7 @@ public: Sync() { } Sync(const T & data) : data(data) { } + Sync(T && data) noexcept : data(std::move(data)) { } class Lock { |