From: Patrick Donnelly Date: Fri, 19 Apr 2024 03:34:16 +0000 (-0400) Subject: qa/tasks/vstart_runner: run daemons in foreground X-Git-Tag: testing/wip-mchangir-testing-20250303.143918-reef-debug~1^2~3 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=97170e78e619ffbe4be9edcbdf4f8e8555f0050b;p=ceph-ci.git qa/tasks/vstart_runner: run daemons in foreground This mirrors teuthology and makes it possible to check the exit status of a daemon. Signed-off-by: Patrick Donnelly (cherry picked from commit e2e2144a56bc71de739e7bc531b253a04a122b00) --- diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index db856537d8b..5bc460267a7 100644 --- a/qa/tasks/vstart_runner.py +++ b/qa/tasks/vstart_runner.py @@ -555,7 +555,7 @@ class LocalDaemon(object): self.proc = self.controller.run(args=[ os.path.join(BIN_PREFIX, "ceph-{0}".format(self.daemon_type)), - "-i", self.daemon_id]) + "-i", self.daemon_id, "-f"], wait=False) def signal(self, sig, silent=False): if not self.running():