Skip to content

Commit 1ba52a6

Browse files
committed
---
yaml --- r: 4687 b: refs/heads/logging-alpha c: acacd1d h: refs/heads/master i: 4685: 03c63a1 4683: 43973c1 4679: 651b210 4671: f5afbde
1 parent 15c0659 commit 1ba52a6

6 files changed

Lines changed: 9 additions & 50 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ refs/heads/compute-alpha: 969cba2627f1d53d352cc4a5ffe0879dacf65e6c
1212
refs/heads/dns-alpha: 2f90e7e338349287ace33375896907af0f032ca1
1313
refs/heads/dns-alpha-batch: 17442b07867021b85d0452f5f3eda29a3413288f
1414
refs/heads/gcs-nio: 283aeaf15efdcf3621eb6859f05e55ad7764375d
15-
refs/heads/logging-alpha: 45c466588e63c0159ed6432a1aed60b0ee068a31
15+
refs/heads/logging-alpha: acacd1db03ae25c638b68629098cd678d516d65e
1616
refs/tags/v0.1.0: a615317f7424ed58621b1f65d5c4d8cbbe8a6ed8
1717
refs/tags/v0.1.1: 7a7f6985fe465e9dd6a075af55493f42b4933be0
1818
refs/tags/v0.1.2: 3eb3fe866ba22487686048f45d927b8c8638ea3f

branches/logging-alpha/RELEASING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Most of the release process is handled by the `after_success.sh` script, trigger
77
1. Run `utilities/update_pom_version.sh` from the repository's base directory.
88
This script takes an optional argument denoting the new version. By default, if the current version is X.Y.Z-SNAPSHOT, the script will update the version in all the pom.xml files to X.Y.Z. If desired, another version can be supplied via command line argument instead.
99

10-
2. Create a PR to update the pom.xml version. If releasing a new client library, this PR should also update javadoc grouping in the base directory's [pom.xml](./pom.xml).
11-
PRs that don't release new modules should look something like [#225](https://github.com/GoogleCloudPlatform/gcloud-java/pull/225). PRs that do release a new module should also add the appropriate packages to the javadoc groups "SPI" and "Test helpers", as shown in [#802](https://github.com/GoogleCloudPlatform/gcloud-java/pull/802) for `gcloud-java-dns`. After this PR is merged into GoogleCloudPlatform/gcloud-java, Travis CI will push a new website to GoogleCloudPlatform/gh-pages, push a new artifact to the Maven Central Repository, and update versions in the README files.
10+
2. Create a PR to update the pom.xml version.
11+
The PR should look something like [#225](https://github.com/GoogleCloudPlatform/gcloud-java/pull/225). After this PR is merged into GoogleCloudPlatform/gcloud-java, Travis CI will push a new website to GoogleCloudPlatform/gh-pages, push a new artifact to the Maven Central Repository, and update versions in the README files.
1212

1313
3. Before moving on, verify that the artifacts have successfully been pushed to the Maven Central Repository. Open Travis CI, click the ["Build History" tab](https://travis-ci.org/GoogleCloudPlatform/gcloud-java/builds), and open the second build's logs for Step 2's PR. Be sure that you are not opening the "Pull Request" build logs. When the build finishes, scroll to the end of the log and verify that the artifacts were successfully staged and deployed. You can also search for `gcloud-java` on the [Sonatype website](https://oss.sonatype.org/#nexus-search;quick~gcloud-java) and check the latest version number. If the deployment didn't succeed because of a flaky test, rerun the build.
1414

branches/logging-alpha/codacy-conf.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

branches/logging-alpha/gcloud-java-dns/src/main/java/com/google/gcloud/dns/testing/package-info.java

Lines changed: 0 additions & 36 deletions
This file was deleted.

branches/logging-alpha/gcloud-java-dns/src/test/java/com/google/gcloud/dns/it/ITDnsTest.java

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -593,11 +593,9 @@ public void testInvalidChangeRequest() {
593593
RecordSet.builder("subdomain." + zone.dnsName(), RecordSet.Type.A)
594594
.records(ImmutableList.of("0.255.1.5"))
595595
.build();
596-
boolean recordAdded = false;
597596
try {
598597
ChangeRequestInfo validChange = ChangeRequest.builder().add(validA).build();
599598
zone.applyChangeRequest(validChange);
600-
recordAdded = true;
601599
try {
602600
zone.applyChangeRequest(validChange);
603601
fail("Created a record set which already exists.");
@@ -650,11 +648,9 @@ public void testInvalidChangeRequest() {
650648
assertEquals(400, ex.code());
651649
}
652650
} finally {
653-
if (recordAdded) {
654-
ChangeRequestInfo deletion = ChangeRequest.builder().delete(validA).build();
655-
ChangeRequest request = zone.applyChangeRequest(deletion);
656-
waitForChangeToComplete(zone.name(), request.id());
657-
}
651+
ChangeRequestInfo deletion = ChangeRequest.builder().delete(validA).build();
652+
ChangeRequest request = zone.applyChangeRequest(deletion);
653+
waitForChangeToComplete(zone.name(), request.id());
658654
zone.delete();
659655
}
660656
}

branches/logging-alpha/gcloud-java-resourcemanager/src/main/java/com/google/gcloud/resourcemanager/testing/package-info.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@
2222
* <pre> {@code
2323
* LocalResourceManagerHelper resourceManagerHelper = LocalResourceManagerHelper.create();
2424
* ResourceManager resourceManager = resourceManagerHelper.options().service();
25-
* resourceManagerHelper.start();
26-
* }</pre>
25+
* } </pre>
2726
*
2827
* <p>After the test:
2928
* <pre> {@code
3029
* resourceManagerHelper.stop();
31-
* }</pre>
30+
* } </pre>
3231
*/
3332
package com.google.gcloud.resourcemanager.testing;

0 commit comments

Comments
 (0)