You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/java-bigtable/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
Fixes #<issue_number_goes_here> ☕️
If you write sample code, please follow the [samples format](
https://github.com/GoogleCloudPlatform/java-docs-samples/blob/main/SAMPLE_FORMAT.md).
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/EnhancedBigtableStubSettings.java
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/stub/EnhancedBigtableStubCloseTest.java
-1
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,6 @@ public void setUp() throws Exception {
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/stub/EnhancedBigtableStubSettingsTest.java
+20-11
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,10 @@ public void readRowsIsNotLostTest() {
185
185
EnhancedBigtableStubSettings.Builderbuilder =
186
186
EnhancedBigtableStubSettings.newBuilder()
187
187
.setProjectId(dummyProjectId)
188
-
.setInstanceId(dummyInstanceId);
188
+
.setInstanceId(dummyInstanceId)
189
+
// Here and everywhere in this test, disable channel priming so we won't need
190
+
// authentication for sending the prime request since we're only testing the settings.
191
+
.setRefreshingChannel(false);
189
192
190
193
RetrySettingsretrySettings =
191
194
RetrySettings.newBuilder()
@@ -243,7 +246,8 @@ public void readRowIsNotLostTest() {
243
246
EnhancedBigtableStubSettings.Builderbuilder =
244
247
EnhancedBigtableStubSettings.newBuilder()
245
248
.setProjectId("my-project")
246
-
.setInstanceId("my-instance");
249
+
.setInstanceId("my-instance")
250
+
.setRefreshingChannel(false);
247
251
248
252
RetrySettingsretrySettings =
249
253
RetrySettings.newBuilder()
@@ -295,7 +299,8 @@ public void readRowRetryCodesMustMatch() {
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/stub/mutaterows/MutateRowsRetryTest.java
+2
Original file line number
Diff line number
Diff line change
@@ -69,6 +69,8 @@ public void setUp() throws IOException {
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/stub/readrows/ReadRowsRetryTest.java
+2
Original file line number
Diff line number
Diff line change
@@ -81,6 +81,8 @@ public void setUp() throws IOException {
0 commit comments