summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-23 06:22:26 -0400
committerGitHub <noreply@github.com>2022-04-23 06:22:26 -0400
commit31231ffd748d10048e6541b18fd863a66342c6c7 (patch)
treee6d32a8ed6bb3328194f4c53d3967343f4d9d39a /test
parent1a768dbc089c91dda7f552cb89134be9fa498136 (diff)
parentad249222d254fec0be84b474906651936b89578b (diff)
downloadpodman-31231ffd748d10048e6541b18fd863a66342c6c7.tar.gz
podman-31231ffd748d10048e6541b18fd863a66342c6c7.tar.bz2
podman-31231ffd748d10048e6541b18fd863a66342c6c7.zip
Merge pull request #13959 from cevich/fix_apiv2
Fix hang in apiv2 test_connect
Diffstat (limited to 'test')
-rw-r--r--test/apiv2/python/rest_api/fixtures/podman.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/apiv2/python/rest_api/fixtures/podman.py b/test/apiv2/python/rest_api/fixtures/podman.py
index c700571b9..f2db6f498 100644
--- a/test/apiv2/python/rest_api/fixtures/podman.py
+++ b/test/apiv2/python/rest_api/fixtures/podman.py
@@ -20,10 +20,6 @@ class Podman:
cgroupfs = os.getenv("CGROUP_MANAGER", "systemd")
self.cmd.append(f"--cgroup-manager={cgroupfs}")
- if os.getenv("DEBUG"):
- self.cmd.append("--log-level=debug")
- self.cmd.append("--syslog=true")
-
self.anchor_directory = tempfile.mkdtemp(prefix="podman_restapi_")
self.cmd.append("--root=" + os.path.join(self.anchor_directory, "crio"))
self.cmd.append("--runroot=" + os.path.join(self.anchor_directory, "crio-run"))