未验证 提交 64707e06 编写于 作者: 雨落殇秋 提交者: GitHub

Fix dynamic configuration key bug of `endpoint-name-grouping` #5831 (#5833)

* tangs 修改key识别为core
* Update CHANGES.md
Co-authored-by: N唐山 <tangs@dev.sgcc.com>
Co-authored-by: wu-sheng's avatar吴晟 Wu Sheng <wu.sheng@foxmail.com>
上级 5e8b6e92
......@@ -39,7 +39,8 @@ Release Notes.
* Fix CVE in the uninstrumented gateways configs, when activating the dynamic configuration feature.
* Fix CVE in the Apdex threshold configs, when activating the dynamic configuration feature.
* Make the codes and doc consistent in sharding server and core server.
* Fix that chunked string is incorrect while the tag contains colon
* Fix that chunked string is incorrect while the tag contains colon.
* Fix the incorrect dynamic configuration key bug of `endpoint-name-grouping`.
#### UI
* Fix incorrect label in radial chart in topology.
......
......@@ -22,6 +22,7 @@ import java.io.FileNotFoundException;
import java.io.StringReader;
import lombok.extern.slf4j.Slf4j;
import org.apache.skywalking.oap.server.configuration.api.ConfigChangeWatcher;
import org.apache.skywalking.oap.server.core.CoreModule;
import org.apache.skywalking.oap.server.library.module.ModuleProvider;
import org.apache.skywalking.oap.server.library.util.ResourceUtils;
......@@ -35,7 +36,7 @@ public class EndpointNameGroupingRuleWatcher extends ConfigChangeWatcher {
public EndpointNameGroupingRuleWatcher(ModuleProvider provider,
EndpointNameGrouping grouping) throws FileNotFoundException {
super(provider.module().getName(), provider, "endpoint-name-grouping");
super(CoreModule.NAME, provider, "endpoint-name-grouping");
this.grouping = grouping;
// This is just a place holder text representing the original text.
ruleSetting = "SkyWalking endpoint rule";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册