We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
org.apache.dubbo.config.AbstractInterfaceConfig#useRegistryForConfigIfNecessary
ConfigCenterConfig cc = configManager.getConfigCenter().orElse(new ConfigCenterConfig()); if (rc.getParameters() != null) { Map<String, String> configParams = cc.getParameters() == null ? new HashMap<>() : cc.getParameters(); configParams.putAll(rc.getParameters()); cc.setParameters(configParams); } cc.getParameters().put(org.apache.dubbo.remoting.Constants.CLIENT_KEY,rc.getClient());
when rc.getParameters() is null then cc.getParameters() is null, it`s will show NullPointerException.
please check cc.getParameters() is null and init before use it.
The text was updated successfully, but these errors were encountered:
#5219
Thanks for reporting, please focus on this issue and help test
Sorry, something went wrong.
我也刚刚替换成2.7.4,也出现了同样的问题
No branches or pull requests
ConfigCenterConfig cc = configManager.getConfigCenter().orElse(new ConfigCenterConfig());
if (rc.getParameters() != null) {
Map<String, String> configParams = cc.getParameters() == null ? new HashMap<>() : cc.getParameters();
configParams.putAll(rc.getParameters());
cc.setParameters(configParams);
}
cc.getParameters().put(org.apache.dubbo.remoting.Constants.CLIENT_KEY,rc.getClient());
when rc.getParameters() is null then cc.getParameters() is null, it`s will show NullPointerException.
please check cc.getParameters() is null and init before use it.
The text was updated successfully, but these errors were encountered: