From 30c45b4503c717655d0c09e5c191d5a63471e356 Mon Sep 17 00:00:00 2001 From: Piotr Biernat Date: Sun, 2 Jul 2023 22:38:13 +0200 Subject: [PATCH] consul https temp fix --- consul/discovery.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul/discovery.go b/consul/discovery.go index 872f6ff..62fc417 100644 --- a/consul/discovery.go +++ b/consul/discovery.go @@ -61,7 +61,7 @@ func (s *Service) GetID() string { } func (s *Service) GetFullAddr() string { - return fmt.Sprintf("https://%s:%d/", s.domain, s.port) + return fmt.Sprintf("http://%s:%d/", s.domain, s.port) } func (s *Service) Register() error {