Skip to content

Commit

Permalink
disable watchdog for the new ReadRow callable chain
Browse files Browse the repository at this point in the history
Change-Id: I4522719a65f24d27fb9dccde031c3b1cc04042c2
  • Loading branch information
igorbernstein2 committed Nov 5, 2024
1 parent 0c2bc84 commit 066ae08
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,8 @@ public <RowT> UnaryCallable<Query, RowT> createReadRowCallable(RowAdapter<RowT>
ServerStreamingCallSettings.<ReadRowsRequest, Row>newBuilder()
.setRetryableCodes(settings.readRowSettings().getRetryableCodes())
.setRetrySettings(settings.readRowSettings().getRetrySettings())
.setIdleTimeout(settings.readRowSettings().getRetrySettings().getTotalTimeout())
.setIdleTimeoutDuration(Duration.ZERO)
.setWaitTimeoutDuration(Duration.ZERO)
.build(),
rowAdapter,
new SimpleStreamResumptionStrategy<>());
Expand Down

0 comments on commit 066ae08

Please sign in to comment.