Skip to content

Commit fdf00ba

Browse files
committed
fix:修复规则路由判断是否应用级注册逻辑
1 parent 509c66e commit fdf00ba

File tree

1 file changed

+1
-1
lines changed
  • dubbo/dubbo-plugins/dubbo-router-polaris/src/main/java/com/tencent/polaris/dubbo/router

1 file changed

+1
-1
lines changed

dubbo/dubbo-plugins/dubbo-router-polaris/src/main/java/com/tencent/polaris/dubbo/router/PolarisRouter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ public <T> RouterResult<Invoker<T>> realRoute(List<Invoker<T>> invokers, URL url
134134
}
135135
logger.debug(String.format("[POLARIS] list service(%s), method(%s), labels(%s), url(%s)", serviceInfo.getService(),
136136
invocation.getMethodName(), arguments, url));
137-
List<Instance> resultInstances = operator.route(serviceInfo.getService(), invocation.getMethodName(), arguments, instances);
137+
List<Instance> resultInstances = operator.route(serviceInfo.getService(), serviceInfo.getDubboInterface(), arguments, instances);
138138
return new RouterResult<>((List<Invoker<T>>) ((List<?>) resultInstances));
139139
}
140140

0 commit comments

Comments
 (0)