]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: spawn MDS daemons before creating fs 37218/head
authorPatrick Donnelly <pdonnell@redhat.com>
Thu, 17 Sep 2020 16:01:33 +0000 (09:01 -0700)
committerPatrick Donnelly <pdonnell@redhat.com>
Thu, 17 Sep 2020 16:26:38 +0000 (09:26 -0700)
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 <pdonnell@redhat.com>
qa/tasks/ceph.py

index d1974d388b610f41eda6f5559dc3eb9d508227db..032f8be3fc44a2c46a2b60b55aa90e2293163367 100644 (file)
@@ -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),
     ]