From 0f9a7225ab47fe313db41f4019177be8fb84a1dd Mon Sep 17 00:00:00 2001 From: AmineChikhaoui Date: Wed, 25 Oct 2017 16:51:45 +0100 Subject: [PATCH] respect SIGINT in nix copy during the paths queries #1629 --- src/libstore/store-api.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc index 82e0bda54..3631e1b30 100644 --- a/src/libstore/store-api.cc +++ b/src/libstore/store-api.cc @@ -392,6 +392,7 @@ PathSet Store::queryValidPaths(const PathSet & paths, SubstituteFlag maybeSubsti ThreadPool pool; auto doQuery = [&](const Path & path ) { + checkInterrupt(); queryPathInfo(path, [path, &state_, &wakeup](ref info) { auto state(state_.lock());