Wait for tailscale client to be ready after tailscale up

This commit is contained in:
Juan Font Alonso 2022-11-13 16:58:20 +01:00 committed by Juan Font
parent cb2790984f
commit 9989657c0f

View file

@ -258,7 +258,13 @@ func (s *Scenario) RunTailscaleUp(
// TODO(kradalby): error handle this
_ = c.Up(loginServer, authKey)
}(client)
err := client.WaitForReady()
if err != nil {
log.Printf("error waiting for client %s to be ready: %s", client.Hostname(), err)
}
}
namespace.joinWaitGroup.Wait()
return nil