From a5b38e448e08e3b43ae45cd4597d6c19a06f8f97 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Sat, 8 Apr 2017 10:20:16 +0800 Subject: [PATCH] tests: ceph_objectstore_tool.py: run vstart with MGR=1 Signed-off-by: Kefu Chai --- src/test/ceph_objectstore_tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/ceph_objectstore_tool.py b/src/test/ceph_objectstore_tool.py index ac68228a4e432..2bbe1743b8585 100755 --- a/src/test/ceph_objectstore_tool.py +++ b/src/test/ceph_objectstore_tool.py @@ -152,7 +152,7 @@ def cat_file(level, filename): def vstart(new, opt=""): print("vstarting....", end="") NEW = new and "-n" or "-N" - call("MON=1 OSD=4 MDS=0 MGR=0 CEPH_PORT=7400 {path}/src/vstart.sh --short -l {new} -d {opt} > /dev/null 2>&1".format(new=NEW, opt=opt, path=CEPH_ROOT), shell=True) + call("MON=1 OSD=4 MDS=0 MGR=1 CEPH_PORT=7400 {path}/src/vstart.sh --short -l {new} -d {opt} > /dev/null 2>&1".format(new=NEW, opt=opt, path=CEPH_ROOT), shell=True) print("DONE") -- 2.39.5