提交 dad4a2a6 编写于 作者: oldratlee's avatar oldratlee 🔥

避免NPE DUBBO-577

上级 c7dc2893
......@@ -615,7 +615,9 @@ public class RegistryDirectory<T> extends AbstractDirectory<T> implements Notify
}
public URL getUrl() {
overrideDirectoryUrl = overrideDirectoryUrl.addParameter(Constants.INVOKER_CONNECTED_KEY, registry.isAvailable());
if(registry != null) {
overrideDirectoryUrl = overrideDirectoryUrl.addParameter(Constants.INVOKER_CONNECTED_KEY, registry.isAvailable());
}
return overrideDirectoryUrl;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册