Skip to content
Snippets Groups Projects
Commit 3c5015ac authored by vito.he's avatar vito.he
Browse files

Add:2.6.0 add registry type

parent 289a9cdb
No related branches found
No related tags found
No related merge requests found
...@@ -13,6 +13,7 @@ import "github.com/dubbo/dubbo-go/config" ...@@ -13,6 +13,7 @@ import "github.com/dubbo/dubbo-go/config"
type RegistryConfig struct { type RegistryConfig struct {
Id string `required:"true" yaml:"id" json:"id,omitempty"` Id string `required:"true" yaml:"id" json:"id,omitempty"`
TimeoutStr string `yaml:"timeout" default:"5s" json:"timeout,omitempty"` // unit: second TimeoutStr string `yaml:"timeout" default:"5s" json:"timeout,omitempty"` // unit: second
Type string `required:"true" yaml:"type" json:"type,omitempty"`
Group string `yaml:"group" json:"group,omitempty"` Group string `yaml:"group" json:"group,omitempty"`
//for registry //for registry
Address string `yaml:"address" json:"address,omitempty"` Address string `yaml:"address" json:"address,omitempty"`
...@@ -23,7 +24,7 @@ func loadRegistries(registriesIds []ConfigRegistry, registries []RegistryConfig, ...@@ -23,7 +24,7 @@ func loadRegistries(registriesIds []ConfigRegistry, registries []RegistryConfig,
for _, registry := range registriesIds { for _, registry := range registriesIds {
for _, registryConf := range registries { for _, registryConf := range registries {
if string(registry) == registryConf.Id { if string(registry) == registryConf.Id {
url, err := config.NewURL(context.TODO(), registryConf.Address, config.WithParams(registryConf.getUrlMap(roleType))) url, err := config.NewURL(context.TODO(), registryConf.Address, config.WithParams(registryConf.getUrlMap(roleType)), config.WithProtocol(constant.REGISTRY_PROTOCOL))
if err != nil { if err != nil {
log.Error("The registry id:%s url is invalid ,and will skip the registry, error: %#v", registryConf.Id, err) log.Error("The registry id:%s url is invalid ,and will skip the registry, error: %#v", registryConf.Id, err)
} else { } else {
...@@ -41,6 +42,7 @@ func (regconfig *RegistryConfig) getUrlMap(roleType config.RoleType) url.Values ...@@ -41,6 +42,7 @@ func (regconfig *RegistryConfig) getUrlMap(roleType config.RoleType) url.Values
urlMap := url.Values{} urlMap := url.Values{}
urlMap.Set(constant.GROUP_KEY, regconfig.Group) urlMap.Set(constant.GROUP_KEY, regconfig.Group)
urlMap.Set(constant.ROLE_KEY, roleType.String()) urlMap.Set(constant.ROLE_KEY, roleType.String())
urlMap.Set(constant.REGISTRY_KEY, regconfig.Type)
urlMap.Set(constant.REGISTRY_TIMEOUT_KEY, regconfig.TimeoutStr) urlMap.Set(constant.REGISTRY_TIMEOUT_KEY, regconfig.TimeoutStr)
return urlMap return urlMap
} }
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