diff --git a/consul/discovery.go b/consul/discovery.go index 73b4ce6..ec3f219 100644 --- a/consul/discovery.go +++ b/consul/discovery.go @@ -26,7 +26,7 @@ var ErrServiceUnavailable = fmt.Errorf("Service is unavailable") func NewService(serverAddr, appID, appName, ip, domain string, appPort int) (*Service, error) { s := new(Service) s.AppID = appID - s.Name = strings.Replace(appName, "-", "_", -1) + s.Name = strings.Replace(appName, "-", "", -1) s.Address = domain s.IP = ip s.Port = appPort