Skip to content

Commit 55285a1

Browse files
Bricks-Manchickenlj
authored andcommitted
Merge pull request #3527 Bricks-Man/incubator-dubbo, fix accidentally check exchanger in setDispatcher
fixes #3518
1 parent a40c2f8 commit 55285a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dubbo-config/dubbo-config-api/src/main/java/org/apache/dubbo/config/ProviderConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,8 @@ public String getDispatcher() {
405405
}
406406

407407
public void setDispatcher(String dispatcher) {
408-
checkExtension(Dispatcher.class, Constants.DISPATCHER_KEY, exchanger);
409-
checkExtension(Dispatcher.class, "dispather", exchanger);
408+
checkExtension(Dispatcher.class, Constants.DISPATCHER_KEY, dispatcher);
409+
checkExtension(Dispatcher.class, "dispather", dispatcher);
410410
this.dispatcher = dispatcher;
411411
}
412412

0 commit comments

Comments
 (0)