From e99c33b9db632f227e6a4243467ed37fa8f4aa28 Mon Sep 17 00:00:00 2001 From: Sakthivel Subramanian Date: Mon, 6 Jan 2025 17:24:17 +0530 Subject: [PATCH] disable streaming thread --- .../main/java/com/google/cloud/spanner/AsyncResultSetImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-cloud-spanner/src/main/java/com/google/cloud/spanner/AsyncResultSetImpl.java b/google-cloud-spanner/src/main/java/com/google/cloud/spanner/AsyncResultSetImpl.java index 1789eba3a3..d2d3940dc8 100644 --- a/google-cloud-spanner/src/main/java/com/google/cloud/spanner/AsyncResultSetImpl.java +++ b/google-cloud-spanner/src/main/java/com/google/cloud/spanner/AsyncResultSetImpl.java @@ -490,7 +490,7 @@ public ApiFuture setCallback(Executor exec, ReadyCallback cb) { this.result = SettableApiFuture.create(); this.state = State.STREAMING_INITIALIZED; initiateProduceRows(); -// this.service.execute(new InitiateStreamingRunnable()); + // this.service.execute(new InitiateStreamingRunnable()); this.executor = MoreExecutors.newSequentialExecutor(Preconditions.checkNotNull(exec)); this.callback = Preconditions.checkNotNull(cb); pausedLatch.countDown();