diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-03-01T21·05+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-03-01T21·05+0000 |
commit | f789ea1d098c2755e97f7ee6ebc418f71e5f56f6 (patch) | |
tree | 3cfbc2ff11d28fe54d990ef9663ebace04b25a64 /src/libstore/local-store.cc | |
parent | d7caac3e811c0c9b284c8bbbdf5bc1dd5badd040 (diff) |
* A transaction is unnecessary since the path cannot be
garbage-collected (it's a temporary root).
Diffstat (limited to 'src/libstore/local-store.cc')
-rw-r--r-- | src/libstore/local-store.cc | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 12a73b70c965..6a8de7bc42eb 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -628,11 +628,8 @@ void LocalStore::exportPath(const Path & path, bool sign, { assertStorePath(path); - /* Wrap all of this in a transaction to make sure that we export - consistent metadata. */ - Transaction txn(nixDB); addTempRoot(path); - if (!isValidPathTxn(txn, path)) + if (!isValidPath(path)) throw Error(format("path `%1%' is not valid") % path); HashAndWriteSink hashAndWriteSink(sink); @@ -644,10 +641,10 @@ void LocalStore::exportPath(const Path & path, bool sign, writeString(path, hashAndWriteSink); PathSet references; - nix::queryReferences(txn, path, references); + queryReferences(path, references); writeStringSet(references, hashAndWriteSink); - Path deriver = nix::queryDeriver(txn, path); + Path deriver = queryDeriver(path); writeString(deriver, hashAndWriteSink); if (sign) { @@ -677,8 +674,6 @@ void LocalStore::exportPath(const Path & path, bool sign, } else writeInt(0, hashAndWriteSink); - - txn.commit(); } |