From 8053c639733632d4dfaf48df02fe5d467c328fed Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Thu, 1 Dec 2022 10:28:17 +0100 Subject: [PATCH] fix --- consul/discovery.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/consul/discovery.go b/consul/discovery.go index 702418f..acc63b8 100644 --- a/consul/discovery.go +++ b/consul/discovery.go @@ -4,7 +4,6 @@ import ( "fmt" "log" "net/http" - "os" "time" consul "github.com/hashicorp/consul/api" @@ -23,8 +22,6 @@ type Service struct { var ErrServiceUnavailable = fmt.Errorf("Service is unavailable") func NewService(serverAddr, appID, appName, ip, domain string, appPort int) (*Service, error) { - hostname, _ := os.Hostname() - fmt.Println("hostname:" + hostname) s := new(Service) s.AppID = appID s.Name = appName @@ -111,7 +108,7 @@ func (s *Service) check() (bool, error) { } func (s *Service) getTags() []string { - fullName := fmt.Sprintf("%s_%s", s.Name, s.AppID) + fullName := fmt.Sprintf("%s-%s", s.Name, s.AppID) bFullAddr := fmt.Sprintf("http://%s:%d/", s.IP, s.Port) // FIXME: declare one once - dont need to refresh.... tags := []string{