Skip to content

Commit 87261a9

Browse files
authoredFeb 28, 2023
fix: Use org.threeten.bp.Duration for ReadChangeStreamQuery::heartbeatDura… (#1652)
…tion 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).
1 parent 5ba3d61 commit 87261a9

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed
 

‎google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ReadChangeStreamQuery.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public ReadChangeStreamQuery continuationTokens(
182182
}
183183

184184
/** Sets the heartbeat duration for the change stream. */
185-
public ReadChangeStreamQuery heartbeatDuration(java.time.Duration duration) {
185+
public ReadChangeStreamQuery heartbeatDuration(org.threeten.bp.Duration duration) {
186186
builder.setHeartbeatDuration(
187187
Duration.newBuilder()
188188
.setSeconds(duration.getSeconds())

‎google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/models/ReadChangeStreamQueryTest.java

+9-9
Original file line numberDiff line numberDiff line change
@@ -152,11 +152,11 @@ public void endTimeTest() {
152152
@Test
153153
public void heartbeatDurationTest() {
154154
ReadChangeStreamQuery query =
155-
ReadChangeStreamQuery.create(TABLE_ID).heartbeatDuration(java.time.Duration.ofSeconds(5));
155+
ReadChangeStreamQuery.create(TABLE_ID)
156+
.heartbeatDuration(org.threeten.bp.Duration.ofSeconds(5));
156157

157158
Builder expectedProto =
158-
expectedProtoBuilder()
159-
.setHeartbeatDuration(com.google.protobuf.Duration.newBuilder().setSeconds(5).build());
159+
expectedProtoBuilder().setHeartbeatDuration(Duration.newBuilder().setSeconds(5).build());
160160

161161
ReadChangeStreamRequest actualProto = query.toProto(requestContext);
162162
assertThat(actualProto).isEqualTo(expectedProto.build());
@@ -232,7 +232,7 @@ public void serializationTest() throws IOException, ClassNotFoundException {
232232
.streamPartition("simple-begin", "simple-end")
233233
.continuationTokens(Collections.singletonList(token))
234234
.endTime(FAKE_END_TIME)
235-
.heartbeatDuration(java.time.Duration.ofSeconds(5));
235+
.heartbeatDuration(org.threeten.bp.Duration.ofSeconds(5));
236236

237237
ByteArrayOutputStream bos = new ByteArrayOutputStream();
238238
ObjectOutputStream oos = new ObjectOutputStream(bos);
@@ -302,7 +302,7 @@ public void testEquality() {
302302
.streamPartition("simple-begin", "simple-end")
303303
.startTime(FAKE_START_TIME)
304304
.endTime(FAKE_END_TIME)
305-
.heartbeatDuration(java.time.Duration.ofSeconds(5));
305+
.heartbeatDuration(org.threeten.bp.Duration.ofSeconds(5));
306306

307307
// ReadChangeStreamQuery#toProto should not change the ReadChangeStreamQuery instance state
308308
request.toProto(requestContext);
@@ -312,7 +312,7 @@ public void testEquality() {
312312
.streamPartition("simple-begin", "simple-end")
313313
.startTime(FAKE_START_TIME)
314314
.endTime(FAKE_END_TIME)
315-
.heartbeatDuration(java.time.Duration.ofSeconds(5)));
315+
.heartbeatDuration(org.threeten.bp.Duration.ofSeconds(5)));
316316

317317
assertThat(ReadChangeStreamQuery.create(TABLE_ID).streamPartition("begin-1", "end-1"))
318318
.isNotEqualTo(ReadChangeStreamQuery.create(TABLE_ID).streamPartition("begin-2", "end-1"));
@@ -324,10 +324,10 @@ public void testEquality() {
324324
ReadChangeStreamQuery.create(TABLE_ID).endTime(Instant.ofEpochSecond(1L, 1001L)));
325325
assertThat(
326326
ReadChangeStreamQuery.create(TABLE_ID)
327-
.heartbeatDuration(java.time.Duration.ofSeconds(5)))
327+
.heartbeatDuration(org.threeten.bp.Duration.ofSeconds(5)))
328328
.isNotEqualTo(
329329
ReadChangeStreamQuery.create(TABLE_ID)
330-
.heartbeatDuration(java.time.Duration.ofSeconds(6)));
330+
.heartbeatDuration(org.threeten.bp.Duration.ofSeconds(6)));
331331
}
332332

333333
@Test
@@ -350,7 +350,7 @@ public void testClone() {
350350
.streamPartition("begin", "end")
351351
.continuationTokens(Collections.singletonList(token))
352352
.endTime(FAKE_END_TIME)
353-
.heartbeatDuration(java.time.Duration.ofSeconds(5));
353+
.heartbeatDuration(org.threeten.bp.Duration.ofSeconds(5));
354354
ReadChangeStreamRequest request =
355355
ReadChangeStreamRequest.newBuilder()
356356
.setTableName(NameUtil.formatTableName(PROJECT_ID, INSTANCE_ID, TABLE_ID))

‎google-cloud-bigtable/src/test/java/com/google/cloud/bigtable/data/v2/stub/changestream/ReadChangeStreamUserCallableTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
import com.google.cloud.bigtable.data.v2.models.ReadChangeStreamQuery;
2222
import com.google.cloud.bigtable.gaxx.testing.FakeStreamingApi.ServerStreamingStashCallable;
2323
import com.google.common.truth.Truth;
24-
import java.time.Duration;
2524
import org.junit.Test;
2625
import org.junit.runner.RunWith;
2726
import org.junit.runners.JUnit4;
27+
import org.threeten.bp.Duration;
2828
import org.threeten.bp.Instant;
2929

3030
@RunWith(JUnit4.class)

0 commit comments

Comments
 (0)