From 78a59f8b0c43adbd9a7a1db68dafcbf7bd2ad74d Mon Sep 17 00:00:00 2001 From: David Zafman Date: Mon, 1 Jun 2015 17:22:18 -0700 Subject: [PATCH] test/ceph-objectstore-tool: Don't need stderr noise Signed-off-by: David Zafman (cherry picked from commit d7858c66454093dd6f2fab60e33e5b2472bcd80a) --- 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 368f9048129b5..c8493c4ccb18a 100755 --- a/src/test/ceph_objectstore_tool.py +++ b/src/test/ceph_objectstore_tool.py @@ -1029,7 +1029,7 @@ def main(argv): NEWPOOL = "import-rados-pool" cmd = "./rados mkpool {pool}".format(pool=NEWPOOL) logging.debug(cmd) - ret = call(cmd, shell=True, stdout=nullfd) + ret = call(cmd, shell=True, stdout=nullfd, stderr=nullfd) print "Test import-rados" for osd in [f for f in os.listdir(OSDDIR) if os.path.isdir(os.path.join(OSDDIR, f)) and string.find(f, "osd") == 0]: -- 2.39.5