From 1c2f6281b911738aeea5afd8105f52e44c5ccd58 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Wed, 11 May 2016 18:36:04 +0200 Subject: [PATCH] Remove signing parameter (nix#f435f82) --- src/hydra-queue-runner/build-remote.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hydra-queue-runner/build-remote.cc b/src/hydra-queue-runner/build-remote.cc index 5bee35d4..a1ddb5fe 100644 --- a/src/hydra-queue-runner/build-remote.cc +++ b/src/hydra-queue-runner/build-remote.cc @@ -106,7 +106,7 @@ static void copyClosureTo(ref destStore, printMsg(lvlDebug, format("sending %1% missing paths") % missing.size()); to << cmdImportPaths; - destStore->exportPaths(missing, false, to); + destStore->exportPaths(missing, to); to.flush(); if (readInt(from) != 1) @@ -360,7 +360,7 @@ void State::buildRemote(ref destStore, to << cmdExportPaths << 0 << outputs; to.flush(); - destStore->importPaths(false, from, result.accessor); + destStore->importPaths(from, result.accessor); auto now2 = std::chrono::steady_clock::now();