PrevPrevious commit
Next Next commit
fix: clirr build failure
  • Loading branch information
@olavloite
olavloite committedJun 24, 2020
commit 223bd1ae59bcdb05a18fe4bcb76e73a0f076dce7
Original file line numberDiff line numberDiff line change
Expand Up@@ -180,6 +180,6 @@
<difference>
<differenceType>7012</differenceType>
<className>com/google/cloud/spanner/spi/v1/SpannerRpc</className>
<method>com.google.api.gax.rpc.ServerStream executePartitionedDml(com.google.spanner.v1.ExecuteSqlRequest, java.util.Map)</method>
<method>com.google.api.gax.rpc.ServerStream executePartitionedDml(com.google.spanner.v1.ExecuteSqlRequest, java.util.Map, org.threeten.bp.Duration)</method>
</difference>
</differences>
Original file line numberDiff line numberDiff line change
Expand Up@@ -304,7 +304,7 @@ public GapicSpannerRpc(final SpannerOptions options) {

// Set a keepalive time of 120 seconds to help long running
// commit GRPC calls succeed
.setKeepAliveTime(Duration.ofSeconds(GRPC_KEEPALIVE_SECONDS))
.setKeepAliveTime(Duration.ofSeconds(GRPC_KEEPALIVE_SECONDS * 1000))

// Then check if SpannerOptions provides an InterceptorProvider. Create a default
// SpannerInterceptorProvider if none is provided
Expand Down