Increase ls timeout from 7 to 20 seconds

Signed-off-by: Saul Shanabrook <s.shanabrook@gmail.com>
This commit is contained in:
Saul Shanabrook 2020-07-16 11:49:52 -04:00
parent fd6de6b6ae
commit 14b7936c3b

View File

@ -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()