damccorm commented on code in PR #37552:
URL: https://github.com/apache/beam/pull/37552#discussion_r2784300607
##########
sdks/java/io/google-cloud-platform/src/main/java/org/apache/beam/sdk/io/gcp/spanner/SpannerAccessor.java:
##########
@@ -113,6 +113,11 @@ public static SpannerAccessor getOrCreate(SpannerConfig
spannerConfig) {
static SpannerOptions buildSpannerOptions(SpannerConfig spannerConfig) {
SpannerOptions.Builder builder = SpannerOptions.newBuilder();
+ // TODO(https://github.com/apache/beam/issues/37451) Disable gRPC gcp
extension which was
+ // causing the application thread to stall.
+ // Remove this once Spanner fixes the hanging issue
+ builder.disableGrpcGcpExtension(); 1
Review Comment:
```suggestion
builder.disableGrpcGcpExtension();
```
Please remove extra characters
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]