Skip to content
Snippets Groups Projects
Commit 37e38205 authored by justimkiss's avatar justimkiss
Browse files

fix issue:204, branch develop

parent 6ae6569a
No related branches found
No related tags found
No related merge requests found
...@@ -59,7 +59,7 @@ func init() { ...@@ -59,7 +59,7 @@ func init() {
return return
} }
dubboConf := protocolConf.(map[interface{}]interface{})[DUBBO] dubboConf := protocolConf.(map[interface{}]interface{})[DUBBO]
if protocolConf == nil { if dubboConf == nil {
logger.Warnf("dubboConf is nil") logger.Warnf("dubboConf is nil")
return return
} }
......
...@@ -48,7 +48,7 @@ func init() { ...@@ -48,7 +48,7 @@ func init() {
return return
} }
dubboConf := protocolConf.(map[interface{}]interface{})[DUBBO] dubboConf := protocolConf.(map[interface{}]interface{})[DUBBO]
if protocolConf == nil { if dubboConf == nil {
logger.Warnf("dubboConf is nil") logger.Warnf("dubboConf is nil")
return return
} }
......
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