1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-15 06:52:43 +01:00

nix-daemon: Exit successfully when interrupted.

Fixes #2058.

(cherry picked from commit 346c0ac361)
This commit is contained in:
Shea Levy 2018-04-09 08:05:54 -04:00 committed by Eelco Dolstra
parent 2463b4eb07
commit f226d56d25
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE

View file

@ -1035,7 +1035,7 @@ static void daemonLoop(char * * argv)
}, options);
} catch (Interrupted & e) {
throw;
return;
} catch (Error & e) {
printError(format("error processing connection: %1%") % e.msg());
}