From: Patrick Donnelly Date: Thu, 17 Sep 2020 16:01:33 +0000 (-0700) Subject: qa: spawn MDS daemons before creating fs X-Git-Tag: v16.1.0~1052^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F37218%2Fhead;p=ceph.git qa: spawn MDS daemons before creating fs This avoids unnecessary MDS_ALL_DOWN messages because the MDS daemons have not yet been spawned. Fixes: https://tracker.ceph.com/issues/47518 Signed-off-by: Patrick Donnelly --- diff --git a/qa/tasks/ceph.py b/qa/tasks/ceph.py index d1974d388b6..032f8be3fc4 100644 --- a/qa/tasks/ceph.py +++ b/qa/tasks/ceph.py @@ -1825,8 +1825,8 @@ def task(ctx, config): lambda: crush_setup(ctx=ctx, config=config), lambda: run_daemon(ctx=ctx, config=config, type_='osd'), lambda: create_rbd_pool(ctx=ctx, config=config), - lambda: cephfs_setup(ctx=ctx, config=config), lambda: run_daemon(ctx=ctx, config=config, type_='mds'), + lambda: cephfs_setup(ctx=ctx, config=config), lambda: watchdog_setup(ctx=ctx, config=config), ]