Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion scripts/promote_stable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
1 change: 0 additions & 1 deletion scripts/travis/release_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down
2 changes: 1 addition & 1 deletion test/e2e-go/restAPI/restClient_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
}
Expand Down