From ed2e61e89f475b4633b52a0229324ed1987a62a1 Mon Sep 17 00:00:00 2001 From: Steffen Greber Date: Wed, 16 Dec 2020 14:37:50 +0100 Subject: [PATCH] workaround https://github.com/containers/podman/issues/8745 --- pkg/api/handlers/compat/exec.go | 2 +- version/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/api/handlers/compat/exec.go b/pkg/api/handlers/compat/exec.go index cc5db8efe8..95923b912a 100644 --- a/pkg/api/handlers/compat/exec.go +++ b/pkg/api/handlers/compat/exec.go @@ -73,7 +73,7 @@ func ExecCreateHandler(w http.ResponseWriter, r *http.Request) { // Run the exit command after 5 minutes, to mimic Docker's exec cleanup // behavior. - libpodConfig.ExitCommandDelay = 5 * 60 + libpodConfig.ExitCommandDelay = 0 sessID, err := ctr.ExecCreate(libpodConfig) if err != nil { diff --git a/version/version.go b/version/version.go index 851bb42053..423358f809 100644 --- a/version/version.go +++ b/version/version.go @@ -8,7 +8,7 @@ import ( // NOTE: remember to bump the version at the top // of the top-level README.md file when this is // bumped. -var Version = semver.MustParse("2.2.1") +var Version = semver.MustParse("2.2.1.1") // APIVersion is the version for the remote // client API. It is used to determine compatibility