From 4d0346c028589737591615a308f69736a9fa0534 Mon Sep 17 00:00:00 2001 From: Matej Vasek Date: Thu, 19 Nov 2020 19:27:00 +0100 Subject: not forcing unmount Signed-off-by: Matej Vasek --- pkg/api/handlers/compat/containers_archive.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/api/handlers/compat/containers_archive.go') diff --git a/pkg/api/handlers/compat/containers_archive.go b/pkg/api/handlers/compat/containers_archive.go index 10f755a59..1dd563393 100644 --- a/pkg/api/handlers/compat/containers_archive.go +++ b/pkg/api/handlers/compat/containers_archive.go @@ -173,7 +173,7 @@ func handlePut(w http.ResponseWriter, r *http.Request, decoder *schema.Decoder, } defer func() { - if err := ctr.Unmount(true); err != nil { + if err := ctr.Unmount(false); err != nil { logrus.Warnf("failed to unmount container %s", ctrName) } }() -- cgit v1.2.3-54-g00ecf