From: David Zafman Date: Tue, 2 Jun 2015 00:22:18 +0000 (-0700) Subject: test/ceph-objectstore-tool: Don't need stderr noise X-Git-Tag: v9.0.2~27^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d7858c66454093dd6f2fab60e33e5b2472bcd80a;p=ceph.git test/ceph-objectstore-tool: Don't need stderr noise Signed-off-by: David Zafman --- diff --git a/src/test/ceph_objectstore_tool.py b/src/test/ceph_objectstore_tool.py index d14a8d4bdc3..b8b48c06883 100755 --- a/src/test/ceph_objectstore_tool.py +++ b/src/test/ceph_objectstore_tool.py @@ -1106,7 +1106,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]: