diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2017-08-30 23:12:12 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-09-01 10:29:39 +0200 |
commit | fe55199542590d16aa6ca6a8bfa0fda27903db5c (patch) | |
tree | d1d492cd0445c1e16ca13774c54de950c21dade7 /guix/scripts/pack.scm | |
parent | 75690c9f6bd7909868ae0f91ee7f3cf9e0be1942 (diff) |
scripts: Remove 'max-silent-time' from the default options.
Fixes <http://bugs.gnu.org/27157>.
Having a finite default `max-silent-time' value for scripts such as 'guix
environment' could lead to timeouts when building subtitutes; this was
undesirable.
This change also fixes client behavior to match the documentation, which
is that by default the daemon's settings are honored.
* guix/scripts/archive.scm (%default-options): Remove max-silent-time entry.
* guix/scripts/copy.scm (%default-options): Likewise.
* guix/scripts/environment.scm (%default-options): Likewise.
* guix/scripts/pack.scm (%default-options): Likewise.
* guix/scripts/package.scm (%default-options): Likewise.
* guix/scripts/pull.scm (%default-options): Likewise.
* guix/scripts/system.scm (%default-options): Likewise.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/scripts/pack.scm')
-rw-r--r-- | guix/scripts/pack.scm | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/guix/scripts/pack.scm b/guix/scripts/pack.scm index c269a1fefc..21fea446a6 100644 --- a/guix/scripts/pack.scm +++ b/guix/scripts/pack.scm @@ -263,7 +263,6 @@ the image." (system . ,(%current-system)) (substitutes? . #t) (graft? . #t) - (max-silent-time . 3600) (verbosity . 0) (symlinks . ()) (compressor . ,(first %compressors)))) |