diff options
author | Matthew Heon <matthew.heon@pm.me> | 2019-02-27 16:17:39 -0500 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2019-02-27 16:20:11 -0500 |
commit | 512245afcbf087bab63874040308457e4979b78d (patch) | |
tree | 9bea7f6a9b2939227ef93f6a1672d0f9a5af53e7 /cmd/podman/common.go | |
parent | 70d3cc2e73caf64fc978c1349da45c9a5551b210 (diff) | |
download | podman-512245afcbf087bab63874040308457e4979b78d.tar.gz podman-512245afcbf087bab63874040308457e4979b78d.tar.bz2 podman-512245afcbf087bab63874040308457e4979b78d.zip |
Fix ignored --stop-timeout flag to 'podman create'
Also add some extra debug information to help figure out what's
going on when stop goes bad.
Fixes: #2472
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'cmd/podman/common.go')
-rw-r--r-- | cmd/podman/common.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/common.go b/cmd/podman/common.go index e297f3921..f9dfa3759 100644 --- a/cmd/podman/common.go +++ b/cmd/podman/common.go @@ -415,7 +415,7 @@ func getCreateFlags(c *cliconfig.PodmanCommand) { "stop-signal", "", "Signal to stop a container. Default is SIGTERM", ) - createFlags.Int( + createFlags.Uint( "stop-timeout", libpod.CtrRemoveTimeout, "Timeout (in seconds) to stop a container. Default is 10", ) |