From 0147c74671402fac68d2910f61b1736e0fc56dba Mon Sep 17 00:00:00 2001 From: John Spray Date: Tue, 29 Jul 2014 13:11:12 +0100 Subject: [PATCH] task/mds_journal_migration: fix cleanup Previously this was remounting in the background which meant that if a workunit was executed immediately afterwards it could put files in the mount dir before the FS was mounted, causing the mount to fail. Signed-off-by: John Spray --- teuthology/task/mds_journal_migration.py | 1 + 1 file changed, 1 insertion(+) diff --git a/teuthology/task/mds_journal_migration.py b/teuthology/task/mds_journal_migration.py index d4ff03392b7..0d2bf09cf5c 100644 --- a/teuthology/task/mds_journal_migration.py +++ b/teuthology/task/mds_journal_migration.py @@ -101,5 +101,6 @@ def task(ctx, config): # Leave all MDSs and clients running for any child tasks for mount in ctx.mounts.values(): mount.mount() + mount.wait_until_mounted() yield