From ed29610cc60f28822845dbe9d1cae01baca3dd6a Mon Sep 17 00:00:00 2001 From: regnat Date: Tue, 13 Apr 2021 11:25:28 +0200 Subject: [PATCH] Fix registerDrvOutput with the daemon Resolve a protocol issue that caused the daemon to endlessly wait for some information that the client doesn't ever send --- src/libstore/daemon.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libstore/daemon.cc b/src/libstore/daemon.cc index affd60472..0be9d2c54 100644 --- a/src/libstore/daemon.cc +++ b/src/libstore/daemon.cc @@ -887,7 +887,6 @@ static void performOp(TunnelLogger * logger, ref store, logger->startWork(); auto outputId = DrvOutput::parse(readString(from)); auto outputPath = StorePath(readString(from)); - auto resolvedDrv = StorePath(readString(from)); store->registerDrvOutput(Realisation{ .id = outputId, .outPath = outputPath}); logger->stopWork();