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

Mod:resolve conflict

parent 5067daeb
No related branches found
No related tags found
No related merge requests found
......@@ -18,13 +18,13 @@
package config
import (
"go.uber.org/atomic"
"path/filepath"
"testing"
)
import (
"github.com/stretchr/testify/assert"
"go.uber.org/atomic"
)
import (
......
......@@ -205,12 +205,16 @@ func (c *ServiceConfig) Unexport() {
if c.unexported.Load() {
return
}
c.exportersLock.Lock()
defer c.exportersLock.Unlock()
for _, exporter := range c.exporters {
exporter.Unexport()
}
c.exporters = nil
func() {
c.exportersLock.Lock()
defer c.exportersLock.Unlock()
for _, exporter := range c.exporters {
exporter.Unexport()
}
c.exporters = nil
}()
c.exported.Store(false)
c.unexported.Store(true)
}
......
......@@ -48,22 +48,28 @@ func NewMetadataServiceExporter(metadataService service.MetadataService) exporte
// Export will export the metadataService
func (exporter *MetadataServiceExporter) Export() error {
if !exporter.IsExported() {
exporter.lock.Lock()
defer exporter.lock.Unlock()
exporter.serviceConfig = config.NewServiceConfig("MetadataService", context.Background())
exporter.serviceConfig.Protocol = constant.DEFAULT_PROTOCOL
exporter.serviceConfig.Protocols = map[string]*config.ProtocolConfig{
serviceConfig := config.NewServiceConfig("MetadataService", context.Background())
serviceConfig.Protocol = constant.DEFAULT_PROTOCOL
serviceConfig.Protocols = map[string]*config.ProtocolConfig{
constant.DEFAULT_PROTOCOL: generateMetadataProtocol(),
}
exporter.serviceConfig.InterfaceName = constant.METADATA_SERVICE_NAME
exporter.serviceConfig.Group = config.GetApplicationConfig().Name
exporter.serviceConfig.Version = exporter.metadataService.Version()
exporter.serviceConfig.Implement(exporter.metadataService)
err := exporter.serviceConfig.Export()
serviceConfig.InterfaceName = constant.METADATA_SERVICE_NAME
serviceConfig.Group = config.GetApplicationConfig().Name
serviceConfig.Version = exporter.metadataService.Version()
var err error
func() {
exporter.lock.Lock()
defer exporter.lock.Unlock()
exporter.serviceConfig = serviceConfig
exporter.serviceConfig.Implement(exporter.metadataService)
err = exporter.serviceConfig.Export()
}()
logger.Infof("The MetadataService exports urls : %v ", exporter.serviceConfig.GetExportedUrls())
return err
}
logger.Warnf("The MetadataService has been exported : %v ", exporter.serviceConfig.GetExportedUrls())
return nil
}
......
......@@ -28,6 +28,7 @@ import (
// Metadataservice is used to define meta data related behaviors
type MetadataService interface {
common.RPCService
// ServiceName will get the service's name in meta service , which is application name
ServiceName() (string, error)
// ExportURL will store the exported url in metadata
......@@ -50,7 +51,6 @@ type MetadataService interface {
GetServiceDefinitionByServiceKey(serviceKey string) (string, error)
// Version will return the metadata service version
Version() string
common.RPCService
}
// BaseMetadataService is used for the common logic for struct who will implement interface MetadataService
......
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