Skip to content

Commit cbe72c7

Browse files
authored
[ISSUE #9962] Fix the failure of fastjson2 parsing metricsExporterType in proxy config (#9963)
1 parent 7cc0774 commit cbe72c7

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

proxy/src/main/java/org/apache/rocketmq/proxy/config/ProxyConfig.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1226,10 +1226,6 @@ public void setMetricsExporterType(MetricsExporterType metricsExporterType) {
12261226
this.metricsExporterType = metricsExporterType;
12271227
}
12281228

1229-
public void setMetricsExporterType(int metricsExporterType) {
1230-
this.metricsExporterType = MetricsExporterType.valueOf(metricsExporterType);
1231-
}
1232-
12331229
public void setMetricsExporterType(String metricsExporterType) {
12341230
this.metricsExporterType = MetricsExporterType.valueOf(metricsExporterType);
12351231
}

0 commit comments

Comments
 (0)