From 2d666f006b3ed67988e8e664f10f9e9bcc6cb7c3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lu=C3=ADs=20Henriques?= Date: Thu, 29 Sep 2022 11:51:32 +0100 Subject: [PATCH] qa/tasks/mgr/dashboard/test_health: Add 'max_xattr_size' to the mdsmap schema MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Let the mdsmap schema know about the new field 'max_xattr_size'. This prevents the following error: tasks.mgr.dashboard.helper._ValError: \ In `input['fs_map']['filesystems'][0]['mdsmap']`: unknown keys: {'max_xattr_size'} URL: https://tracker.ceph.com/issues/55725 Signed-off-by: Luís Henriques (cherry picked from commit bf7ddd8e45d58dab578d8f01efb3341a93f57bc8) --- qa/tasks/mgr/dashboard/test_health.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qa/tasks/mgr/dashboard/test_health.py b/qa/tasks/mgr/dashboard/test_health.py index b6ffade4c9641..c3fdc497b4a7c 100644 --- a/qa/tasks/mgr/dashboard/test_health.py +++ b/qa/tasks/mgr/dashboard/test_health.py @@ -29,6 +29,7 @@ class HealthTest(DashboardTestCase): 'in': JList(int), 'last_failure': int, 'max_file_size': int, + 'max_xattr_size': int, 'explicitly_allowed_features': int, 'damaged': JList(int), 'tableserver': int, -- 2.39.5