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: runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/windmill/client/grpc/GrpcCommitWorkStream.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -177,8 +177,8 @@ public void onResponse(StreamingCommitResponse response) {
177
177
continue;
178
178
}
179
179
180
-
// From windmill.proto: Indices must line up with the request_id field, but trailing OKs
181
-
// may be omitted.
180
+
// From windmill.proto: Indices must line up with the request_id field, but trailing OKs may
181
+
// be omitted.
182
182
CommitStatuscommitStatus =
183
183
i < response.getStatusCount() ? response.getStatus(i) : CommitStatus.OK;
184
184
@@ -194,8 +194,7 @@ public void onResponse(StreamingCommitResponse response) {
194
194
try {
195
195
pendingRequest.completeWithStatus(commitStatus);
196
196
} catch (RuntimeExceptione) {
197
-
// Catch possible exceptions to ensure that an exception for one commit does not
198
-
// prevent
197
+
// Catch possible exceptions to ensure that an exception for one commit does not prevent
199
198
// other commits from being processed. Aggregate all the failures to throw after
200
199
// processing the response if they exist.
201
200
LOG.warn("Exception while processing commit response.", e);
Copy file name to clipboardExpand all lines: runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/windmill/client/grpc/GrpcGetDataStream.java
Copy file name to clipboardExpand all lines: runners/google-cloud-dataflow-java/worker/src/test/java/org/apache/beam/runners/dataflow/worker/windmill/client/grpc/GrpcCommitWorkStreamTest.java
0 commit comments