1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

daemon: Print the line whence we expect an integer.

* nix/libstore/local-store.cc (LocalStore::getLineFromSubstituter):
Include the malformed substituter stream line in the error message.
This commit is contained in:
Tobias Geerinckx-Rice
2021-11-19 17:37:44 +01:00
parent 3887c1f3b3
commit 1b1f557d88

View File

@@ -839,7 +839,8 @@ template<class T> T LocalStore::getIntLineFromSubstituter(Agent & run)
{
string s = getLineFromSubstituter(run);
T res;
if (!string2Int(s, res)) throw Error("integer expected from stream");
if (!string2Int(s, res))
throw Error(format("integer expected from stream: %1%") % s);
return res;
}