We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc92a8d + 33976da commit 6b68854Copy full SHA for 6b68854
cmd/crictl/container.go
@@ -157,8 +157,8 @@ var runPullFlags = []cli.Flag{
157
Usage: "Runtime handler to use. Available options are defined by the container runtime.",
158
},
159
&cli.DurationFlag{
160
- Name: "timeout",
161
- Aliases: []string{"t"},
+ Name: "cancel-timeout",
+ Aliases: []string{"T"},
162
Usage: "Seconds to wait for a container create request before cancelling the request",
163
164
@@ -638,7 +638,7 @@ var runContainerCommand = &cli.Command{
638
username: c.String("username"),
639
timeout: c.Duration("pull-timeout"),
640
641
- timeout: c.Duration("timeout"),
+ timeout: c.Duration("cancel-timeout"),
642
}
643
644
runtimeClient, err := getRuntimeService(c, opts.timeout)
0 commit comments