diff --git a/scripts/promote_stable.sh b/scripts/promote_stable.sh index 2c82e794ad..0b62532cd3 100755 --- a/scripts/promote_stable.sh +++ b/scripts/promote_stable.sh @@ -26,7 +26,6 @@ function init_s3cmd() { wget https://sourceforge.net/projects/s3tools/files/s3cmd/2.0.2/s3cmd-2.0.2.tar.gz tar -xf s3cmd-2.0.2.tar.gz popd - sudo apt-get install python-dateutil S3CMD=~/s3cmd-2.0.2/s3cmd fi } diff --git a/scripts/travis/release_packages.sh b/scripts/travis/release_packages.sh index 27d5df31a0..0386337f83 100755 --- a/scripts/travis/release_packages.sh +++ b/scripts/travis/release_packages.sh @@ -30,7 +30,6 @@ function init_s3cmd() { wget https://sourceforge.net/projects/s3tools/files/s3cmd/2.0.2/s3cmd-2.0.2.tar.gz tar -xf s3cmd-2.0.2.tar.gz popd - sudo apt-get install python-dateutil S3CMD=~/s3cmd-2.0.2/s3cmd fi } diff --git a/test/e2e-go/restAPI/restClient_test.go b/test/e2e-go/restAPI/restClient_test.go index e4972710f3..a9ce7ed73b 100644 --- a/test/e2e-go/restAPI/restClient_test.go +++ b/test/e2e-go/restAPI/restClient_test.go @@ -127,7 +127,7 @@ func waitForRoundOne(t *testing.T, testClient libgoal.Client) { select { case err := <-errchan: require.NoError(t, err) - case <-time.After(30 * time.Second): + case <-time.After(1 * time.Minute): // Wait 1 minute (same as WaitForRound) close(quit) t.Fatalf("%s: timeout waiting for round 1", t.Name()) }