Skip to content

Commit add6bf9

Browse files
authored
Merge pull request ceph#52342 from ljflores/wip-whitelist-api
qa/tasks: set defer_client_eviction_on_laggy_osds=false in api tests Reviewed-by: Patrick Donnelly <[email protected]> Reviewed-by: Dhairya Parmar <[email protected]> Reviewed-by: Nizamudeen A <[email protected]>
2 parents c50c042 + 2322d2c commit add6bf9

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)