From: Venky Shankar Date: Wed, 15 Nov 2023 15:27:02 +0000 (+0530) Subject: qa: get_global_id() returns a string (global_id) X-Git-Tag: v17.2.8~186^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=755eab1e8d8bfdf95fd5a96d4ccba7fca8aeef0f;p=ceph.git qa: get_global_id() returns a string (global_id) Signed-off-by: Venky Shankar (cherry picked from commit 8df2c4642518de18ca2867283d744441b39e283e) --- diff --git a/qa/tasks/cephfs/kernel_mount.py b/qa/tasks/cephfs/kernel_mount.py index 666cc19660e..680eb0ab233 100644 --- a/qa/tasks/cephfs/kernel_mount.py +++ b/qa/tasks/cephfs/kernel_mount.py @@ -328,7 +328,7 @@ echo '{fdata}' | sudo tee /sys/kernel/debug/dynamic_debug/control if self.inst is not None: return self.inst - client_gid = "client%d" % self.get_global_id() + client_gid = "client%d" % int(self.get_global_id()) self.inst = " ".join([client_gid, self._global_addr]) return self.inst