You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/readrows/ReadRowsResumptionStrategy.java
+20-18
Original file line number
Diff line number
Diff line change
@@ -83,39 +83,34 @@ public ReadRowsRequest getResumeRequest(ReadRowsRequest request) {
83
83
if (lastKey.isEmpty()) {
84
84
returnrequest;
85
85
}
86
-
Builderbuilder = request.toBuilder();
87
86
88
-
if (request.getRowsLimit() > 0) {
89
-
// NOTE: the edge case of request.getRowsLimit() == numProcessed is handled below
90
-
Preconditions.checkState(
91
-
request.getRowsLimit() >= numProcessed,
92
-
"Detected too many rows for the current row limit during a retry.");
0 commit comments