* Disable the GC reachability check for now (when creating new roots),

as it's hopelessly inefficient.
This commit is contained in:
Eelco Dolstra 2010-08-30 14:11:57 +00:00
parent 766f708418
commit 20acd43c25
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ Path addPermRoot(const Path & _storePath, const Path & _gcRoot,
Instead of reading all the roots, it would be more efficient to
check if the root is in a directory in or linked from the
gcroots directory. */
if (queryBoolSetting("gc-check-reachability", true)) {
if (queryBoolSetting("gc-check-reachability", false)) {
Roots roots = store->findRoots();
if (roots.find(gcRoot) == roots.end())
printMsg(lvlError,