1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-16 14:58:40 +00:00

fix(tunneling): Adjust exponential backoff duration

This commit is contained in:
TwiN
2025-09-30 14:27:38 -04:00
parent 405c15f756
commit c7f0a32135
4 changed files with 7 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ type Config struct {
// Tunnels is a map of SSH tunnel configurations in which the key is the name of the tunnel
Tunnels map[string]*sshtunnel.Config `yaml:",inline"`
mu sync.RWMutex `yaml:"-"`
mu sync.RWMutex `yaml:"-"`
connections map[string]*sshtunnel.SSHTunnel `yaml:"-"`
}