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 <[email protected]>
  • Loading branch information
thetumbled and fengwenzhi authored Dec 22, 2022
1 parent dc29f3a commit 41edd2e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,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 41edd2e

Please sign in to comment.