Skip to content

Commit

Permalink
fix: return early after ack handshake (#142)
Browse files Browse the repository at this point in the history
Signed-off-by: Yashash H L <[email protected]>
  • Loading branch information
yhl25 authored Sep 28, 2024
1 parent f68f9f2 commit c387f9a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/io/numaproj/numaflow/sourcer/Service.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ public void onNext(SourceOuterClass.AckRequest request) {
.setHandshake(request.getHandshake())
.build());
handshakeDone = true;
return;
}

SourceOuterClass.Offset offset = request.getRequest().getOffset();
Expand Down

0 comments on commit c387f9a

Please sign in to comment.