Consul debug

This commit is contained in:
Piotr Biernat 2023-06-28 22:50:16 +02:00
parent 1433b69abe
commit 7bfd048051

View File

@ -117,12 +117,14 @@ func (s *Service) healthCheck() (bool, error) {
healthUrl := s.GetFullAddr() + "health"
req, err := http.NewRequest(http.MethodGet, healthUrl, nil)
if err != nil {
fmt.Printf("Failed to create new Consul request: %v\n", err)
return false
}
req.Header.Set("User-Agent", "Health Check")
resp, err := client.Do(req)
if err != nil {
fmt.Printf("Failed to send Consul request: %v\n", err)
return false
}
defer resp.Body.Close()