Skip to content

Commit

Permalink
[fix][txn] Correct the prompt message (#17009)
Browse files Browse the repository at this point in the history
Co-authored-by: fengwenzhi <fengwenzhi.max@bigo.sg>
  • Loading branch information
2 people authored and Technoboy- committed Feb 7, 2023
1 parent 138fcf4 commit 7f7d931
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private void addIndividualAcknowledgeMessageRequest(TxnID txnID,
public void internalIndividualAcknowledgeMessage(TxnID txnID, List<MutablePair<PositionImpl, Integer>> positions,
CompletableFuture<Void> completableFuture) {
if (txnID == null) {
completableFuture.completeExceptionally(new NotAllowedException("Positions can not be null."));
completableFuture.completeExceptionally(new NotAllowedException("txnID can not be null."));
return;

}
Expand Down

0 comments on commit 7f7d931

Please sign in to comment.