consul fixes

This commit is contained in:
Piotr Biernat 2024-04-19 19:01:16 +02:00
parent 3b73091cfb
commit 359a89ba62

View File

@ -109,7 +109,7 @@ func (s *Service) RegisterHealthChecks() {
}()
go func() { // TTL
interval := s.ttl - time.Second*2 // 2 seconds overhead
interval := s.ttl - (time.Second * 2) // 2 seconds overhead
ticker := time.NewTicker(interval)
for range ticker.C {
if _, err := s.healthCheck(); err != nil {
@ -149,17 +149,14 @@ func (s *Service) healthCheck() (bool, error) {
}
req.Header.Set("User-Agent", "service/internal")
fmt.Printf("Sending HEALTH CHECK request to: %s\n", healthUrl)
resp, err := client.Do(req)
if err != nil {
fmt.Printf("Sending HEALTH CHECK request error: %v\n", err)
return false
}
defer resp.Body.Close()
var body []byte
resp.Body.Read(body)
fmt.Printf("HEALTH CHECK response to: %v -- %v\n", resp, body)
return resp.StatusCode == http.StatusOK
}()