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: v19.2.3~409^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=77dff99e383ad0a32cf65a4df7f69e09a436b16a;p=ceph.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 8e45b45d65d9..5002b50ccc16 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():