diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-09-12T09·07+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2011-09-12T09·07+0000 |
commit | 13114daa3e38abc5c84987830d9276b93251592f (patch) | |
tree | 9e26ad9846c4ea827fdc80cbdf9dc4848e39c455 /src/libstore/local-store.hh | |
parent | 281e3ed0590f253ef717a1f82123dfc569a110a1 (diff) |
* Ouch. A store upgrade could cause a substituter to be triggered,
causing a deadlock.
Diffstat (limited to 'src/libstore/local-store.hh')
-rw-r--r-- | src/libstore/local-store.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index 8cf6b66406a9..7ef01b2644b4 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -226,7 +226,7 @@ private: unsigned long long queryValidPathId(const Path & path); - unsigned long long addValidPath(const ValidPathInfo & info); + unsigned long long addValidPath(const ValidPathInfo & info, bool checkOutputs = true); void addReference(unsigned long long referrer, unsigned long long reference); |