Change heartbeat timeout (#2598)

This commit is contained in:
Zoltan Papp 2024-09-14 10:12:54 +02:00 committed by GitHub
parent 1ef51a4ffa
commit b4c8cf0a67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import (
) )
var ( var (
heartbeatTimeout = healthCheckInterval + 3*time.Second heartbeatTimeout = healthCheckInterval + 10*time.Second
) )
// Receiver is a healthcheck receiver // Receiver is a healthcheck receiver

View File

@ -7,7 +7,7 @@ import (
var ( var (
healthCheckInterval = 25 * time.Second healthCheckInterval = 25 * time.Second
healthCheckTimeout = 5 * time.Second healthCheckTimeout = 20 * time.Second
) )
// Sender is a healthcheck sender // Sender is a healthcheck sender