1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-18 08:26:38 +02:00

Fix a problem with the Register Memory component (#2545)

This commit is contained in:
刘志铭 2022-08-13 18:23:42 +08:00 committed by GitHub
parent f40cfdda82
commit d7d8123bc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -172,6 +172,7 @@ func (m *memRegistry) Register(s *Service, opts ...RegisterOption) error {
metadata := make(map[string]string)
for k, v := range n.Metadata {
metadata[k] = v
}
m.records[s.Name][s.Version].Nodes[n.Id] = &node{
Node: &Node{
Id: n.Id,
@ -183,7 +184,6 @@ func (m *memRegistry) Register(s *Service, opts ...RegisterOption) error {
}
}
}
}
if addedNodes {
if logger.V(logger.DebugLevel, logger.DefaultLogger) {