Skip to content

Commit

Permalink
fixes #2169 resolve the config reload registry issue (#2170)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehu authored Mar 1, 2024
1 parent 5389f15 commit c7b8da0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class ConfigReloadHandler implements LightHttpHandler {
public ConfigReloadHandler() {
if(logger.isDebugEnabled()) logger.debug("ConfigReloadHandler is constructed");
config = ConfigReloadConfig.load();
ModuleRegistry.registerModule(ConfigReloadConfig.CONFIG_NAME, ConfigReloadHandler.class.getName(), Config.getNoneDecryptedInstance().getJsonMapConfigNoCache(ConfigReloadHandler.CONFIG_NAME),null);
ModuleRegistry.registerModule(ConfigReloadConfig.CONFIG_NAME, ConfigReloadHandler.class.getName(), Config.getNoneDecryptedInstance().getJsonMapConfigNoCache(ConfigReloadConfig.CONFIG_NAME),null);
}

@Override
Expand Down

0 comments on commit c7b8da0

Please sign in to comment.