Skip to content

Commit

Permalink
Use the right executor for EndTransactionProcessor (#4044)
Browse files Browse the repository at this point in the history
  • Loading branch information
cserwen committed Mar 28, 2022
1 parent 3f28f5f commit d8119af
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 d8119af

Please sign in to comment.