diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 08:12:15 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 08:12:15 +0100 |
commit | 68f148ed45da0a8b827a96611e7825d5d2396454 (patch) | |
tree | b47bbaa1fdb1613cbff4d45970f901f2b08c5f87 /src/libstore/remote-store.cc | |
parent | 5dd872363a8fff8d2a1d4ed182c8112221e4dfb1 (diff) |
Merge pull request #9798 from edolstra/remote-store-eof
Print a more helpful message if the daemon crashes
(cherry picked from commit 32706b14a7531c2c21b9f96da083a540a0031ec4)
Change-Id: Ief7c465bca7666e2b7e7c9d1dd0c01c5f9014146
Diffstat (limited to 'src/libstore/remote-store.cc')
-rw-r--r-- | src/libstore/remote-store.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index 2f4933577..58fac40dc 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -65,6 +65,7 @@ void RemoteStore::initConnection(Connection & conn) { /* Send the magic greeting, check for the reply. */ try { + conn.from.endOfFileError = "Nix daemon disconnected unexpectedly (maybe it crashed?)"; conn.to << WORKER_MAGIC_1; conn.to.flush(); StringSink saved; |