From ee03afaa6047ad67bd296b04124509d5d2a371e3 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 25 Jun 2013 12:45:22 -0700 Subject: [PATCH] dump_stuck: fix test The mon-osd-report-timeout setting shouldn't be there! We will set the other item explicitly, and remove both from the suite yaml. Fixes: #5440 --- teuthology/task/dump_stuck.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/teuthology/task/dump_stuck.py b/teuthology/task/dump_stuck.py index d7dbf7dafb..ee90fc19d2 100644 --- a/teuthology/task/dump_stuck.py +++ b/teuthology/task/dump_stuck.py @@ -33,10 +33,6 @@ def task(ctx, config): """ Test the dump_stuck command. - The ceph configuration should include:: - - mon_osd_report_timeout = 90 - mon_pg_stuck_threshold = 10 """ assert config is None, \ 'dump_stuck requires no configuration' @@ -57,6 +53,10 @@ def task(ctx, config): manager.raw_cluster_cmd('tell', 'osd.1', 'flush_pg_stats') manager.wait_for_clean(timeout) + manager.raw_cluster_cmd('tell', 'mon.0', 'injectargs', '--', +# '--mon-osd-report-timeout', '90', + '--mon-pg-stuck-threshold', '10') + check_stuck( manager, num_inactive=0, -- 2.39.5