Skip to content

Commit

Permalink
[fix][txn] Correct the prompt message (apache#17009)
Browse files Browse the repository at this point in the history
Co-authored-by: fengwenzhi <fengwenzhi.max@bigo.sg>
(cherry picked from commit 41edd2e)
  • Loading branch information
thetumbled authored and liangyepianzhou committed Feb 6, 2023
1 parent 503457b commit 45678b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,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 45678b8

Please sign in to comment.