Skip to content
Snippets Groups Projects
Commit 3e21d86e authored by lxd168375's avatar lxd168375
Browse files

fix dubbo clientConfig struct point check Validity issue

parent d8443efd
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,11 @@ func init() {
func SetClientConf(c ClientConfig) {
clientConf = &c
err := clientConf.CheckValidity()
if err != nil {
logger.Warnf("[ClientConfig CheckValidity] error: %v", err)
return
}
}
func GetClientConf() ClientConfig {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment