about summary refs log tree commit diff
path: root/src/nix-store/serve-protocol.hh
AgeCommit message (Collapse)AuthorFilesLines
2014-07-10 nix-copy-closure: Fix race conditionEelco Dolstra1-10/+5
There is a long-standing race condition when copying a closure to a remote machine, particularly affecting build-remote.pl: the client first asks the remote machine which paths it already has, then copies over the missing paths. If the garbage collector kicks in on the remote machine between the first and second step, the already-present paths may be deleted. The missing paths may then refer to deleted paths, causing nix-copy-closure to fail. The client now performs both steps using a single remote Nix call (using ‘nix-store --serve’), locking all paths in the closure while querying. I changed the --serve protocol a bit (getting rid of QueryCommand), so this breaks the SSH substituter from older versions. But it was marked experimental anyway. Fixes #141.
2014-02-10 nix-store --serve: Use a versioned protocolShea Levy1-0/+24
Signed-off-by: Shea Levy <shea@shealevy.com>