mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 08:34:15 +01:00
refactor: Update connectivity.Checker struct to use pointer on receiver
This commit is contained in:
parent
b88d0b1c34
commit
76a84031c2
@ -41,7 +41,7 @@ type Checker struct {
|
||||
lastCheck time.Time
|
||||
}
|
||||
|
||||
func (c Checker) Check() bool {
|
||||
func (c *Checker) Check() bool {
|
||||
return client.CanCreateTCPConnection(c.Target, &client.Config{Timeout: 5 * time.Second})
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user