Skip to content

Commit

Permalink
disable streaming thread
Browse files Browse the repository at this point in the history
  • Loading branch information
sakthivelmanii committed Jan 6, 2025
1 parent fd0003d commit 4d7c5fc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,8 @@ public ApiFuture<Void> setCallback(Executor exec, ReadyCallback cb) {
// Start to fetch data and buffer these.
this.result = SettableApiFuture.create();
this.state = State.STREAMING_INITIALIZED;
this.service.execute(new InitiateStreamingRunnable());
initiateProduceRows();
// this.service.execute(new InitiateStreamingRunnable());
this.executor = MoreExecutors.newSequentialExecutor(Preconditions.checkNotNull(exec));
this.callback = Preconditions.checkNotNull(cb);
pausedLatch.countDown();
Expand Down

0 comments on commit 4d7c5fc

Please sign in to comment.