Skip to content
Snippets Groups Projects
Commit 36b73da5 authored by 邹毅贤's avatar 邹毅贤
Browse files

Merge branch 'master-dubbo-go-apache' into feature/addAsyncCall

parents 5038e8b8 679a8e69
No related branches found
No related tags found
No related merge requests found
......@@ -134,14 +134,14 @@ func serviceItemToUrls(item ConfigItem, config ConfiguratorConfig) ([]*common.UR
newUrlStr = newUrlStr + v
url, err := common.NewURL(context.Background(), newUrlStr)
if err != nil {
perrors.WithStack(err)
return nil, perrors.WithStack(err)
}
urls = append(urls, &url)
}
} else {
url, err := common.NewURL(context.Background(), urlStr)
if err != nil {
perrors.WithStack(err)
return nil, perrors.WithStack(err)
}
urls = append(urls, &url)
}
......
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