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
This commit is contained in:
Igor Minar 2017-07-06 11:00:00 -07:00 committed by Jason Aden
parent 105e920b69
commit 6fc5174a13
1 changed files with 6 additions and 2 deletions

View File

@ -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