debug fix

This commit is contained in:
Piotr Biernat 2024-07-20 19:55:33 +02:00
parent b62c0e5a8c
commit d29bd0810b

View File

@ -25,8 +25,8 @@ type Service struct {
connect *connect.Service
kv *consul.KV
hcTicker *time.Ticker
ttlTicker *time.Ticker
// hcTicker *time.Ticker
// ttlTicker *time.Ticker
}
var ErrServiceUnavailable = fmt.Errorf("Service is unavailable")
@ -90,6 +90,8 @@ func (s *Service) Register() error {
// DestinationServiceName: s.Name,
// },
Check: &consul.AgentServiceCheck{
Interval: "5s",
Timeout: "1s",
TTL: s.ttl.String(),
Status: "passing",
DeregisterCriticalServiceAfter: "10s",