From: Sage Weil Date: Tue, 21 Jan 2020 14:57:06 +0000 (-0600) Subject: qa/tasks/ceph: set mon_health_to_clog=false via mon config X-Git-Tag: v15.1.0~57^2~16 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=777f239df9118608ef39a1a8b26bc984ac9f03b6;p=ceph.git qa/tasks/ceph: set mon_health_to_clog=false via mon config This actually works better on new versions. Signed-off-by: Sage Weil --- diff --git a/qa/tasks/ceph.py b/qa/tasks/ceph.py index 7e27f4cc4557..fad9d1e4e676 100644 --- a/qa/tasks/ceph.py +++ b/qa/tasks/ceph.py @@ -1918,17 +1918,13 @@ def task(ctx, config): # a bunch of scary messages unrelated to our actual run. firstmon = teuthology.get_first_mon(ctx, config, config['cluster']) (mon0_remote,) = ctx.cluster.only(firstmon).remotes.keys() - # try this several times, since tell to mons is lossy. mon0_remote.run( args=[ 'sudo', 'ceph', '--cluster', config['cluster'], - '--mon-client-directed-command-retry', '5', - 'tell', - 'mon.*', - 'injectargs', - '--', - '--no-mon-health-to-clog', - ] + 'config', 'set', 'global', + 'mon_health_to_clog', 'false', + ], + check_status=False, )