Skip to content

Commit b417f14

Browse files
authored
feat: compatible with custom dubbo2 version (#264)
1 parent b2ac472 commit b417f14

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arex-instrumentation/dubbo/arex-dubbo-apache-v2/src/main/java/io/arex/inst/dubbo/apache/v2/DubboModuleInstrumentation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@
1717
public class DubboModuleInstrumentation extends ModuleInstrumentation {
1818

1919
public DubboModuleInstrumentation() {
20+
// The reason for not add supportTo() is compatible with custom dubbo version, such as qunar.dubbo:4.0.77
2021
super("dubbo-apache-v2", ModuleDescription.builder()
21-
.name("dubbo-all").supportFrom(ComparableVersion.of("2.7")).supportTo(ComparableVersion.of("2.8")).build());
22+
.name("dubbo-all").supportFrom(ComparableVersion.of("2.7")).build());
2223
}
2324

2425
@Override

0 commit comments

Comments
 (0)