Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
22a7f0099
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Summer2022
22a7f0099
Commits
3c5015ac
Commit
3c5015ac
authored
5 years ago
by
vito.he
Browse files
Options
Downloads
Patches
Plain Diff
Add:2.6.0 add registry type
parent
289a9cdb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
config/support/registry_config.go
+3
-1
3 additions, 1 deletion
config/support/registry_config.go
with
3 additions
and
1 deletion
config/support/registry_config.go
+
3
−
1
View file @
3c5015ac
...
@@ -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
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment