aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
authoreldritch horrors <pennae@lix.systems>2024-03-22 00:57:02 +0100
committereldritch horrors <pennae@lix.systems>2024-03-31 16:42:40 +0000
commit45623f077fdd53eb227bfee94f061835e86742ff (patch)
tree423756e3f51e2df9161f89996a3c6151ab8b0083 /src/libstore
parentf402c45cfa7d683fb90824cd6f6809184ed88225 (diff)
libutil: drop Fs{Source,Sink}::good
setting this only on exceptions caused by actual fd access is not sufficient to diagnose all errors (such as SerialisationError) in some cases. this usually does not have any negative effects since those errors will end up killing the process in another way. this is not a reliable assumption though and we should be using proper error handling (and closing connections more often, preferring to close over keeping something open that might be in a weird state) Change-Id: I1b792cd7ad8ba9ff0f6bd174945ab2575ff2208e
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/remote-store.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index 2373bbdc7..2ce047acd 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -39,9 +39,7 @@ RemoteStore::RemoteStore(const Params & params)
},
[this](const ref<Connection> & r) {
return
- r->to.good()
- && r->from.good()
- && std::chrono::duration_cast<std::chrono::seconds>(
+ std::chrono::duration_cast<std::chrono::seconds>(
std::chrono::steady_clock::now() - r->startTime).count() < maxConnectionAge;
}
))
@@ -180,6 +178,10 @@ void RemoteStore::ConnectionHandle::processStderr(Sink * sink, Source * source,
m.find("Derive([") != std::string::npos)
throw Error("%s, this might be because the daemon is too old to understand dependencies on dynamic derivations. Check to see if the raw derivation is in the form '%s'", std::move(m), "DrvWithVersion(..)");
}
+ // the daemon can still handle more requests, so the connection itself
+ // is still valid. the current *handle* however should be considered a
+ // lost cause and abandoned entirely.
+ handle.release();
throw;
}
}