summaryrefslogtreecommitdiff
path: root/pkg/bindings/test
diff options
context:
space:
mode:
authorChris Evich <cevich@redhat.com>2021-11-04 10:37:38 -0400
committerChris Evich <cevich@redhat.com>2021-11-18 13:50:11 -0500
commitf3021f3f6eff325236d9bdeccb9d7cc58bf1ce2d (patch)
tree24f2cc44e6c22552003842187baeb7f6825d3e87 /pkg/bindings/test
parent155a443a915059a2993cf3281d998e3c3a02dafb (diff)
downloadpodman-f3021f3f6eff325236d9bdeccb9d7cc58bf1ce2d.tar.gz
podman-f3021f3f6eff325236d9bdeccb9d7cc58bf1ce2d.tar.bz2
podman-f3021f3f6eff325236d9bdeccb9d7cc58bf1ce2d.zip
Cirrus: Fix bindings test hang b/c logging config mismatch
Massive thanks to @edsantiago for tracking this down. Ref: https://github.com/containers/podman/issues/12175 Signed-off-by: Chris Evich <cevich@redhat.com>
Diffstat (limited to 'pkg/bindings/test')
-rw-r--r--pkg/bindings/test/common_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/bindings/test/common_test.go b/pkg/bindings/test/common_test.go
index d996595bf..233666a48 100644
--- a/pkg/bindings/test/common_test.go
+++ b/pkg/bindings/test/common_test.go
@@ -151,7 +151,7 @@ func createTempDirInTempDir() (string, error) {
}
func (b *bindingTest) startAPIService() *gexec.Session {
- cmd := []string{"--log-level=debug", "--events-backend=file", "system", "service", "--timeout=0", b.sock}
+ cmd := []string{"--log-level=debug", "system", "service", "--timeout=0", b.sock}
session := b.runPodman(cmd)
sock := strings.TrimPrefix(b.sock, "unix://")