From: Sam Lang Date: Tue, 20 Nov 2012 15:53:52 +0000 (-0600) Subject: task/pexec: Output stderr to teuthology log X-Git-Tag: 1.1.0~2404 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=df3b1b89b1439498bbc80507cc700fa7b3c7628c;p=teuthology.git task/pexec: Output stderr to teuthology log Signed-off-by: Sam Lang --- diff --git a/teuthology/task/pexec.py b/teuthology/task/pexec.py index 38a05eb0a..f629fcdf5 100644 --- a/teuthology/task/pexec.py +++ b/teuthology/task/pexec.py @@ -15,7 +15,7 @@ def _exec_role(remote, role, sudo, ls): args = ['bash', '-s'] if sudo: args.insert(0, 'sudo') - r = remote.run( args=args, stdin=tor.PIPE, stderr=tor.PIPE, wait=False) + r = remote.run( args=args, stdin=tor.PIPE, wait=False) r.stdin.writelines(['set -e\n']) r.stdin.flush() r.stdin.writelines(['cd /tmp/cephtest/mnt.{cid}\n'.format(cid=cid)])