From: Xiubo Li Date: Tue, 13 Sep 2022 05:46:51 +0000 (+0800) Subject: qa: the default CEPH_ASOK_DIR is asok/ now X-Git-Tag: v18.1.0~1038^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6bbb29cb3aad7cdb3ca42536e59d7b0c2e366bb7;p=ceph.git qa: the default CEPH_ASOK_DIR is asok/ now Or the find_admin_socket() couldn't find the correct asok path. Signed-off-by: Xiubo Li --- diff --git a/qa/tasks/vstart_runner.py b/qa/tasks/vstart_runner.py index 7e33ba0d48a9..1a8902079ae4 100644 --- a/qa/tasks/vstart_runner.py +++ b/qa/tasks/vstart_runner.py @@ -606,7 +606,7 @@ class LocalCephFSMount(): # Load the asok path from ceph.conf as vstart.sh now puts admin sockets # in a tmpdir. All of the paths are the same, so no need to select # based off of the service type. - d = "./out" + d = "./asok" with open(self.config_path) as f: for line in f: asok_conf = re.search("^\s*admin\s+socket\s*=\s*(.*?)[^/]+$", line)