Skip to content

Commit

Permalink
Merge pull request sermant-io#1410 from lilai23/kafka_integration_test
Browse files Browse the repository at this point in the history
修复禁止消费插件动态配置zone失效的问题
  • Loading branch information
Sherlockhan authored Jan 10, 2024
2 parents ae59dcb + c037994 commit 1e32286
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private void buildZoneRequest() {
final HashMap<String, String> map = new HashMap<>(REQUEST_MAP_SIZE);
map.put(APP, config.getApplication());
map.put(ENVIRONMENT, config.getEnvironment());
map.put(ZONE, config.getEnvironment());
map.put(ZONE, config.getZone());
final String labelGroup = LabelGroupUtils.createLabelGroup(map);
listenerCache.put(labelGroup, new IntegratedEventListenerAdapter(configOrderIntegratedProcessor, labelGroup));
configOrderIntegratedProcessor.addHolder(new ConfigDataHolder(labelGroup, ZONE_ORDER));
Expand Down

0 comments on commit 1e32286

Please sign in to comment.