From e8254997c7f787795d85f04f28216e6fd79fcccd Mon Sep 17 00:00:00 2001 From: Gavin Nishizawa Date: Wed, 14 Jun 2023 16:08:57 -0700 Subject: [PATCH] default 120 --- d2cli/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d2cli/main.go b/d2cli/main.go index b50a02bb0..4ce34764c 100644 --- a/d2cli/main.go +++ b/d2cli/main.go @@ -89,7 +89,7 @@ func Run(ctx context.Context, ms *xmain.State) (err error) { if err != nil { return err } - timeoutFlag, err := ms.Opts.Int64("D2_TIMEOUT", "timeout", "", 0, "the number of seconds before d2 will timeout. (default=120)") + timeoutFlag, err := ms.Opts.Int64("D2_TIMEOUT", "timeout", "", 120, "the number of seconds before d2 will timeout") if err != nil { return err }