diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-12 14:01:14 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-06-03 18:04:04 +0200 |
commit | ccade8c120c53d56863aeda27bcd2f1f484779cb (patch) | |
tree | 58ab4ee737321ccb6b80c61d15d104140538b4fd | |
parent | 8d9a0be27880d690e8045d27ea2ff5edad967750 (diff) | |
download | guix-ccade8c120c53d56863aeda27bcd2f1f484779cb.tar.gz |
Get rid of unnecessary "interrupted by the user" message with -vvv
-rw-r--r-- | nix/nix-daemon/nix-daemon.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nix/nix-daemon/nix-daemon.cc b/nix/nix-daemon/nix-daemon.cc index 463aba18bd..ecff25d788 100644 --- a/nix/nix-daemon/nix-daemon.cc +++ b/nix/nix-daemon/nix-daemon.cc @@ -743,6 +743,8 @@ static void processConnection(bool trusted) assert(!canSendStderr); }; + canSendStderr = false; + _isInterrupted = false; printMsg(lvlDebug, format("%1% operations") % opCount); } |