Consul debug

This commit is contained in:
Piotr Biernat 2023-06-28 23:40:33 +02:00
parent a37f6209ff
commit 3d8c706835

View File

@ -117,16 +117,19 @@ func (s *Service) healthCheck() (bool, error) {
healthUrl := s.GetFullAddr() + "health"
req, err := http.NewRequest(http.MethodGet, healthUrl, nil)
if err != nil {
fmt.Printf("CreateRequest error: %v\n", err)
return false
}
req.Header.Set("User-Agent", "service/internal")
resp, err := client.Do(req)
if err != nil {
fmt.Printf("SendRequest error: %v\n", err)
return false
}
defer resp.Body.Close()
fmt.Printf("ResponseCODE: %s\n", resp.StatusCode)
return resp.StatusCode == http.StatusOK
}()