Skip to content

Commit

Permalink
Merge pull request #3527 Bricks-Man/incubator-dubbo, fix accidentally…
Browse files Browse the repository at this point in the history
… check exchanger in setDispatcher

fixes #3518
  • Loading branch information
Bricks-Man authored and chickenlj committed Feb 21, 2019
1 parent a40c2f8 commit 55285a1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -405,8 +405,8 @@ public String getDispatcher() {
}

public void setDispatcher(String dispatcher) {
checkExtension(Dispatcher.class, Constants.DISPATCHER_KEY, exchanger);
checkExtension(Dispatcher.class, "dispather", exchanger);
checkExtension(Dispatcher.class, Constants.DISPATCHER_KEY, dispatcher);
checkExtension(Dispatcher.class, "dispather", dispatcher);
this.dispatcher = dispatcher;
}

Expand Down

0 comments on commit 55285a1

Please sign in to comment.