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-pdonnell-testing-20240429.210911-debug~4^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e2e2144a56bc71de739e7bc531b253a04a122b00;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 --- diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index d21bd345beb..58318f86a0e 100644 --- a/qa/tasks/vstart_runner.py +++ b/qa/tasks/vstart_runner.py @@ -584,7 +584,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():