fixed missing loop in WaitUntilReachable
This commit is contained in:
parent
075a8441cd
commit
faf807cb86
@ -24,14 +24,14 @@ func (c *Client) WaitUntilReachable(ctx context.Context) bool {
|
||||
ticker := time.NewTicker(100 * time.Millisecond)
|
||||
defer ticker.Stop()
|
||||
|
||||
select {
|
||||
case <-ticker.C:
|
||||
if c.IsReachable() {
|
||||
return true
|
||||
for {
|
||||
select {
|
||||
case <-ticker.C:
|
||||
if c.IsReachable() {
|
||||
return true
|
||||
}
|
||||
case <-ctx.Done():
|
||||
return false
|
||||
}
|
||||
case <-ctx.Done():
|
||||
return false
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user