fixed missing loop in WaitUntilReachable

This commit is contained in:
Milarin 2024-02-22 00:21:14 +01:00
parent 075a8441cd
commit faf807cb86

View File

@ -24,6 +24,7 @@ func (c *Client) WaitUntilReachable(ctx context.Context) bool {
ticker := time.NewTicker(100 * time.Millisecond)
defer ticker.Stop()
for {
select {
case <-ticker.C:
if c.IsReachable() {
@ -32,6 +33,5 @@ func (c *Client) WaitUntilReachable(ctx context.Context) bool {
case <-ctx.Done():
return false
}
return false
}
}