From 5c0edbae3eb35654b4efb2e6eb097014953aea12 Mon Sep 17 00:00:00 2001 From: David Zafman Date: Sun, 1 May 2016 18:11:51 -0700 Subject: [PATCH] repair_test: Disable scheduled scrubbing to not mess up do_pg_scrub() Fixes: http://tracker.ceph.com/issues/15679 Signed-off-by: David Zafman --- tasks/repair_test.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tasks/repair_test.py b/tasks/repair_test.py index 8b51dd47f89d2..be4a7f7e5946e 100644 --- a/tasks/repair_test.py +++ b/tasks/repair_test.py @@ -298,6 +298,9 @@ def task(ctx, config): ctx.manager.wait_for_all_up() + ctx.manager.raw_cluster_cmd('osd', 'set', 'noscrub') + ctx.manager.raw_cluster_cmd('osd', 'set', 'nodeep-scrub') + repair_test_1(ctx, mdataerr, choose_primary, "scrub") repair_test_1(ctx, mdataerr, choose_replica, "scrub") repair_test_1(ctx, dataerr, choose_primary, "deep-scrub") -- 2.47.3