From: Patrick Donnelly Date: Fri, 13 Jul 2018 17:57:24 +0000 (-0700) Subject: qa: update cluster log health warning message X-Git-Tag: v14.0.1~879^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F21885%2Fhead;p=ceph.git qa: update cluster log health warning message Signed-off-by: Patrick Donnelly --- diff --git a/qa/suites/fs/basic_functional/tasks/sessionmap.yaml b/qa/suites/fs/basic_functional/tasks/sessionmap.yaml index 054fdb707923..2926c73243a9 100644 --- a/qa/suites/fs/basic_functional/tasks/sessionmap.yaml +++ b/qa/suites/fs/basic_functional/tasks/sessionmap.yaml @@ -5,7 +5,7 @@ overrides: global: ms type: simple log-whitelist: - - client session with invalid root + - client session with non-allowable root tasks: - cephfs_test_runner: diff --git a/qa/suites/kcephfs/recovery/tasks/sessionmap.yaml b/qa/suites/kcephfs/recovery/tasks/sessionmap.yaml index 9be8338a86cd..9e3c8b645c72 100644 --- a/qa/suites/kcephfs/recovery/tasks/sessionmap.yaml +++ b/qa/suites/kcephfs/recovery/tasks/sessionmap.yaml @@ -5,7 +5,7 @@ overrides: global: ms type: simple log-whitelist: - - client session with invalid root + - client session with non-allowable root tasks: - cephfs_test_runner: diff --git a/qa/tasks/cephfs/test_sessionmap.py b/qa/tasks/cephfs/test_sessionmap.py index 9d12ab6d8bee..8bd7f5c1602d 100644 --- a/qa/tasks/cephfs/test_sessionmap.py +++ b/qa/tasks/cephfs/test_sessionmap.py @@ -230,6 +230,6 @@ class TestSessionMap(CephFSTestCase): # Configure the client to claim that its mount point metadata is /baz self.set_conf("client.badguy", "client_metadata", "root=/baz") # Try to mount the client, see that it fails - with self.assert_cluster_log("client session with invalid root '/baz' denied"): + with self.assert_cluster_log("client session with non-allowable root '/baz' denied"): with self.assertRaises(CommandFailedError): self.mount_b.mount(mount_path="/foo/bar")