From: Sage Weil Date: Sun, 29 Sep 2019 20:27:49 +0000 (-0500) Subject: ceph-daemon: fix run command to use call(), not check_output() X-Git-Tag: v15.1.0~1313^2~61 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3d8bbcf36ec7161d392540f87246a1657ab32164;p=ceph.git ceph-daemon: fix run command to use call(), not check_output() Signed-off-by: Sage Weil --- diff --git a/src/ceph-daemon b/src/ceph-daemon index 88c3d35c372..cc16e3bdf06 100755 --- a/src/ceph-daemon +++ b/src/ceph-daemon @@ -598,7 +598,7 @@ def command_run(): (daemon_type, daemon_id) = args.name.split('.') (uid, gid) = extract_uid_gid() c = get_container(args.fsid, daemon_type, daemon_id) - c.run() + subprocess.call(c.run_cmd()) ##################################