From f39e39bf3d3068666e5c07e43040ed7b95eeee16 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Wed, 13 Feb 2019 20:47:31 +0100 Subject: [PATCH] build: downgrade to sauce-connect v4.5.1 (#28659) We currently face a lot of flakiness with our Saucelabs job. These randomly exceed the 2min establish timeout because something throws off `sauce-connect` in a long-lasting loop where it tries to connect to some of their Saucelabs servers. The initial assumption from the Saucelabs team was that we might have some invalid firewall rules, but this does not answer why this happens _randomly_, so the latest update from the support is that there have been some changes in the latest version of `sauce-connect` version that cause this flakiness. --- scripts/saucelabs/start-tunnel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/saucelabs/start-tunnel.sh b/scripts/saucelabs/start-tunnel.sh index 3b4cfd0f9a91..18582c387322 100755 --- a/scripts/saucelabs/start-tunnel.sh +++ b/scripts/saucelabs/start-tunnel.sh @@ -2,7 +2,7 @@ set -e -o pipefail -tunnelFileName="sc-4.5.3-linux.tar.gz" +tunnelFileName="sc-4.5.1-linux.tar.gz" tunnelUrl="https://saucelabs.com/downloads/${tunnelFileName}" tunnelTmpDir="/tmp/material-saucelabs"