From 62b59df053357f040d85c26727734815046e2bc3 Mon Sep 17 00:00:00 2001 From: baude Date: Fri, 13 Apr 2018 14:26:35 -0500 Subject: Allow the use of -i/-a on any container We used to not allow the use of -a/-i on containers that were not started with -i or a tty. Given the improvements in our terminal handling, this should work now. This also fixes a systemic problem with the autotests. Signed-off-by: baude Closes: #617 Approved by: baude --- test/e2e/run_restart_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/e2e/run_restart_test.go') diff --git a/test/e2e/run_restart_test.go b/test/e2e/run_restart_test.go index 72a48987d..84eb69b0c 100644 --- a/test/e2e/run_restart_test.go +++ b/test/e2e/run_restart_test.go @@ -46,7 +46,7 @@ var _ = Describe("Podman run restart containers", func() { killSession.WaitWithDefaultTimeout() Expect(killSession.ExitCode()).To(Equal(0)) - session2 := podmanTest.Podman([]string{"start", "--attach", "test1"}) + session2 := podmanTest.Podman([]string{"start", "test1"}) session2.WaitWithDefaultTimeout() Expect(session2.ExitCode()).To(Equal(0)) }) -- cgit v1.2.3-54-g00ecf