From 14b7936c3b8981b4f98dd7e678aa467b3db2ab58 Mon Sep 17 00:00:00 2001 From: Saul Shanabrook Date: Thu, 16 Jul 2020 11:49:52 -0400 Subject: [PATCH] Increase ls timeout from 7 to 20 seconds Signed-off-by: Saul Shanabrook --- commands/ls.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/ls.go b/commands/ls.go index bf927c4b..9aeae340 100644 --- a/commands/ls.go +++ b/commands/ls.go @@ -30,7 +30,7 @@ func runLs(dockerCli command.Cli, in lsOptions) error { } defer release() - ctx, cancel := context.WithTimeout(ctx, 7*time.Second) + ctx, cancel := context.WithTimeout(ctx, 20*time.Second) defer cancel() ll, err := txn.List()