about summary refs log tree commit diff
path: root/src/libstore/local-store.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2007-01-14T16·24+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2007-01-14T16·24+0000
commit8f67b3588603483402440538d7dc326451bbe60d (patch)
tree4c72877a8e2ea20379249eff1555d9eb6c7b600e /src/libstore/local-store.cc
parent8659edc0981373a42f123cd7d84b9925be0123bc (diff)
* Make the garbage collector more resilient to certain consistency
  errors: in-use paths now cause a warning, not a fatal error.

Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r--src/libstore/local-store.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 1bed672d2c..b679ffb4fa 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -709,7 +709,7 @@ void deleteFromStore(const Path & _path, unsigned long long & bytesFreed)
         for (PathSet::iterator i = referrers.begin();
              i != referrers.end(); ++i)
             if (*i != path && isValidPathTxn(txn, *i))
-                throw Error(format("cannot delete path `%1%' because it is in use by path `%2%'") % path % *i);
+                throw PathInUse(format("cannot delete path `%1%' because it is in use by path `%2%'") % path % *i);
         invalidatePath(txn, path);
     }
     txn.commit();