Skip to content

Commit

Permalink
use the right executor for EndTransactionProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
cserwen committed Mar 28, 2022
1 parent 3f28f5f commit 9cc2a5b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -982,8 +982,8 @@ public void registerProcessor() {
/**
* EndTransactionProcessor
*/
this.remotingServer.registerProcessor(RequestCode.END_TRANSACTION, new EndTransactionProcessor(this), this.sendMessageExecutor);
this.fastRemotingServer.registerProcessor(RequestCode.END_TRANSACTION, new EndTransactionProcessor(this), this.sendMessageExecutor);
this.remotingServer.registerProcessor(RequestCode.END_TRANSACTION, new EndTransactionProcessor(this), this.endTransactionExecutor);
this.fastRemotingServer.registerProcessor(RequestCode.END_TRANSACTION, new EndTransactionProcessor(this), this.endTransactionExecutor);

/*
* Default
Expand Down

0 comments on commit 9cc2a5b

Please sign in to comment.