From 61bd00b90ebb9bf4e06bb69d60c3ce68f5ea0f83 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Tue, 24 Mar 2020 18:15:58 +0800 Subject: [PATCH] qa/tasks/cephfs: fix syntax error it's a regression introduced by 9f6c764f10 Signed-off-by: Kefu Chai (cherry picked from commit 496d7e21325e8efa6bbac57a519db2f07d8d7ee5) --- qa/tasks/cephfs/test_exports.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/tasks/cephfs/test_exports.py b/qa/tasks/cephfs/test_exports.py index dd670177c3a5c..abaf92e6bdae1 100644 --- a/qa/tasks/cephfs/test_exports.py +++ b/qa/tasks/cephfs/test_exports.py @@ -128,7 +128,7 @@ class TestExports(CephFSTestCase): self._wait_subtrees(status, 0, [('/1', 1), ('/1/2', 0), ('/1/2/3', 2)]) if not isinstance(self.mount_a, FuseMount): - p = self.mount_a.client_remote.sh('uname -r'), wait=True) + p = self.mount_a.client_remote.sh('uname -r', wait=True) dir_pin = self.mount_a.getfattr("1", "ceph.dir.pin") log.debug("mount.getfattr('1','ceph.dir.pin'): %s " % dir_pin) if str(p) < "5" and not(dir_pin): -- 2.39.5