From df3b1b89b1439498bbc80507cc700fa7b3c7628c Mon Sep 17 00:00:00 2001 From: Sam Lang Date: Tue, 20 Nov 2012 09:53:52 -0600 Subject: [PATCH] task/pexec: Output stderr to teuthology log Signed-off-by: Sam Lang --- teuthology/task/pexec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/pexec.py b/teuthology/task/pexec.py index 38a05eb0a63e9..f629fcdf5c82f 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)]) -- 2.39.5