From fb97a2537bdc8ffebd4f5d676de6021f02615275 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Thu, 30 Jun 2022 15:04:01 +0200 Subject: [PATCH] debug: redirect errors for teuthology_worker Signed-off-by: Kyr Shatskyy --- docs/_static/worker_start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_static/worker_start.sh b/docs/_static/worker_start.sh index e2b4424aed..d2488b083b 100644 --- a/docs/_static/worker_start.sh +++ b/docs/_static/worker_start.sh @@ -9,7 +9,7 @@ function start_workers_for_tube { echo "Starting $2 workers for $1" for i in `seq 1 $2` do - teuthology-worker -v --archive-dir $ARCHIVE --tube $1 --log-dir $WORKER_LOGS & + teuthology-worker -v --archive-dir $ARCHIVE --tube $1 --log-dir $WORKER_LOGS 2>>/tmp/teuthology_worker_$1_$i.error & done }