Browse Source
daemon: Ignore '--keep-failed' for TCP/IP clients.
* nix/nix-daemon/nix-daemon.cc (performOp) <wopSetOptions>: When
'isRemoteConnection' is true, set 'settings.keepFailed' to zero.
* doc/guix.texi (Common Build Options): Document this behavior.
version-0.16.0
Ludovic Courtès
4 years ago
No known key found for this signature in database
GPG Key ID: 90B11993D9AEBB5
2 changed files with
10 additions and
0 deletions
doc/guix.texi
nix/nix-daemon/nix-daemon.cc
@ -6229,6 +6229,10 @@ the end of the build log. This is useful when debugging build issues.
@xref{Debugging Build Failures}, for tips and tricks on how to debug
build issues.
This option has no effect when connecting to a remote daemon with a
@code{guix://} URI (@pxref{The Store, the @code{GUIX_DAEMON_SOCKET}
variable}).
@item --keep-going
@itemx -k
Keep going when some of the derivations fail to build; return only once
@ -565,6 +565,12 @@ static void performOp(bool trusted, unsigned int clientVersion,
case wopSetOptions : {
settings . keepFailed = readInt ( from ) ! = 0 ;
if ( isRemoteConnection )
/* When the client is remote, don't keep the failed build tree as
it is presumably inaccessible to the client and could fill up
our disk . */
settings . keepFailed = 0 ;
settings . keepGoing = readInt ( from ) ! = 0 ;
settings . set ( " build-fallback " , readInt ( from ) ? " true " : " false " ) ;
verbosity = ( Verbosity ) readInt ( from ) ;