summaryrefslogtreecommitdiff
path: root/cmd/podman/restart.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2019-02-28 03:54:53 +0100
committerGitHub <noreply@github.com>2019-02-28 03:54:53 +0100
commitbbf54aaab7a4dacbbeec37a76126d953b47ef98a (patch)
tree50fd9e340d96b2fa560f85da6c12b3fb9771329a /cmd/podman/restart.go
parent6f0dbd004fecadb6d0d07bb8012231d25d61684f (diff)
parent37f447d78ec88267f81c6eb3843a63bf9f36e268 (diff)
downloadpodman-bbf54aaab7a4dacbbeec37a76126d953b47ef98a.tar.gz
podman-bbf54aaab7a4dacbbeec37a76126d953b47ef98a.tar.bz2
podman-bbf54aaab7a4dacbbeec37a76126d953b47ef98a.zip
Merge pull request #2476 from mheon/fix_stop
Fix ignored --stop-timeout flag to 'podman create'
Diffstat (limited to 'cmd/podman/restart.go')
-rw-r--r--cmd/podman/restart.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/restart.go b/cmd/podman/restart.go
index 2bebde4f9..5aa12070e 100644
--- a/cmd/podman/restart.go
+++ b/cmd/podman/restart.go
@@ -73,7 +73,7 @@ func restartCmd(c *cliconfig.RestartValues) error {
defer runtime.Shutdown(false)
timeout := c.Timeout
- useTimeout := c.Flag("timeout").Changed
+ useTimeout := c.Flag("timeout").Changed || c.Flag("time").Changed
// Handle --latest
if c.Latest {