1
0
mirror of https://github.com/ceph/ceph synced 2025-04-01 00:26:47 +00:00

qa/vstart_runner: fix args to os.path.join()

Result of os.path.join() before "./bin/ceph-mds" and after
"./bin/./ceph-mds".

Before -

	2022-05-05 19:36:11,100.100 DEBUG:__main__:> ./bin/./ceph-mds -i a

After -

	2022-05-05 19:38:48,179.179 DEBUG:__main__:> ./bin/ceph-mds -i a

Signed-off-by: Rishabh Dave <ridave@redhat.com>
This commit is contained in:
Rishabh Dave 2022-05-05 19:42:55 +05:30
parent 3dd150959e
commit c9807d35e0

View File

@ -535,7 +535,7 @@ class LocalDaemon(object):
self.stop()
self.proc = self.controller.run(args=[
os.path.join(BIN_PREFIX, "./ceph-{0}".format(self.daemon_type)),
os.path.join(BIN_PREFIX, "ceph-{0}".format(self.daemon_type)),
"-i", self.daemon_id])
def signal(self, sig, silent=False):