From 6fc5174a13ca53ce6afaf052db0392030cb146f1 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 6 Jul 2017 11:00:00 -0700 Subject: [PATCH] build: disable sauce connect logging (#17947) this change is expected to mitigate the flakes on CI that occur when we cat the log in the print-logs.sh --- scripts/sauce/sauce_connect_setup.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/sauce/sauce_connect_setup.sh b/scripts/sauce/sauce_connect_setup.sh index 1538c69947..92ffbdc875 100755 --- a/scripts/sauce/sauce_connect_setup.sh +++ b/scripts/sauce/sauce_connect_setup.sh @@ -23,8 +23,12 @@ CONNECT_DIR="/tmp/sauce-connect-$RANDOM" CONNECT_DOWNLOAD="sc-latest-linux.tar.gz" CONNECT_LOG="$LOGS_DIR/sauce-connect" -CONNECT_STDOUT="$LOGS_DIR/sauce-connect.stdout" -CONNECT_STDERR="$LOGS_DIR/sauce-connect.stderr" +# logging disabled because it's seems to be overwhelming travis and causing flakes +# when we are cat-ing the log in print-logs.sh +# CONNECT_STDOUT="$LOGS_DIR/sauce-connect.stdout" +# CONNECT_STDERR="$LOGS_DIR/sauce-connect.stderr" +CONNECT_STDOUT="/dev/null" +CONNECT_STDERR="/dev/null" # Get Connect and start it mkdir -p $CONNECT_DIR