Skip to content

Commit 2322d2c

Browse files
committed
qa/tasks: set defer_client_eviction_on_laggy_osds=false in api tests
We expect laggy OSDs in this testing environment, so it makes sense to disable this warning. Fixes: https://tracker.ceph.com/issues/61907 Signed-off-by: Laura Flores <[email protected]>
1 parent 669f76b commit 2322d2c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

qa/tasks/mgr/mgr_test_case.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,11 @@ def setUpClass(cls):
104104
raise SkipTest(
105105
"Only have {0} manager daemons, {1} are required".format(
106106
len(cls.mgr_cluster.mgr_ids), cls.MGRS_REQUIRED))
107-
107+
108+
# We expect laggy OSDs in this testing environment so turn off this warning.
109+
# See https://tracker.ceph.com/issues/61907
110+
cls.mgr_cluster.mon_manager.raw_cluster_cmd('config', 'set', 'mds',
111+
'defer_client_eviction_on_laggy_osds', 'false')
108112
cls.setup_mgrs()
109113

110114
@classmethod

0 commit comments

Comments
 (0)