Skip to content

Commit 0ff2c73

Browse files
committed
---
yaml --- r: 6241 b: refs/heads/tswast-patch-1 c: 8310e70 h: refs/heads/master i: 6239: 02ea542
1 parent af9d87b commit 0ff2c73

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: 22f1839238f66c39e67ed4dfdcd273b1ae2e8444
60+
refs/heads/tswast-patch-1: 8310e70a70cce8ea3d39135177d1934037c30f62
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/gcloud-java-storage/src/main/java/com/google/gcloud/storage/testing/RemoteGcsHelper.java

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ public class RemoteGcsHelper {
5050
private static final String BUCKET_NAME_PREFIX = "gcloud-test-bucket-temp-";
5151
private static final String PROJECT_ID_ENV_VAR = "GCLOUD_TESTS_PROJECT_ID";
5252
private static final String PRIVATE_KEY_ENV_VAR = "GCLOUD_TESTS_KEY";
53-
5453
private final StorageOptions options;
5554

5655
private RemoteGcsHelper(StorageOptions options) {
@@ -127,7 +126,13 @@ public static RemoteGcsHelper create(String projectId, String keyPath, Option...
127126
StorageOptions storageOptions = StorageOptions.builder()
128127
.authCredentials(AuthCredentials.createForJson(keyFileStream))
129128
.projectId(projectId)
130-
.retryParams(RetryParams.getDefaultInstance())
129+
.retryParams(RetryParams.builder()
130+
.retryMaxAttempts(10)
131+
.retryMinAttempts(6)
132+
.maxRetryDelayMillis(30000)
133+
.totalRetryPeriodMillis(120000)
134+
.initialRetryDelayMillis(250)
135+
.build())
131136
.build();
132137
return new RemoteGcsHelper(storageOptions);
133138
} catch (FileNotFoundException ex) {

branches/tswast-patch-1/utilities/after_success.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if [ "${TRAVIS_JDK_VERSION}" == "oraclejdk7" -a "${TRAVIS_BRANCH}" == "master" -
3030

3131
cd ..
3232
utilities/update_docs_version.sh # Update version in READMEs
33-
mvn deploy --settings target/travis/settings.xml -P sign-deploy
33+
mvn deploy -DskipTests=true --settings target/travis/settings.xml -P sign-deploy
3434
else
3535
mvn deploy -DskipTests=true -Dgpg.skip=true --settings target/travis/settings.xml
3636
fi

0 commit comments

Comments
 (0)