]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
test/ceph-objectstore-tool: Don't need stderr noise 4784/head
authorDavid Zafman <dzafman@redhat.com>
Tue, 2 Jun 2015 00:22:18 +0000 (17:22 -0700)
committerDavid Zafman <dzafman@redhat.com>
Tue, 2 Jun 2015 00:41:18 +0000 (17:41 -0700)
Signed-off-by: David Zafman <dzafman@redhat.com>
src/test/ceph_objectstore_tool.py

index d14a8d4bdc36fbc00a7b12ee4fb73d6b84f97f56..b8b48c068838d6b470a090a0b48fce3a2795a3fb 100755 (executable)
@@ -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]: