mirror of
https://github.com/siderolabs/talos.git
synced 2025-09-03 13:01:16 +02:00
fix(proxyd): do not pre-bracket IPv6 backend addrs
Fixes #996 Signed-off-by: Seán C McCord <ulexus@gmail.com>
This commit is contained in:
parent
ad79e8dfcf
commit
fd76d90028
@ -327,7 +327,7 @@ func (r *ReverseProxy) Bootstrap(ctx context.Context) {
|
|||||||
ticker := time.NewTicker(1 * time.Second)
|
ticker := time.NewTicker(1 * time.Second)
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
uid := fmt.Sprintf("bootstrap-%d", i)
|
uid := fmt.Sprintf("bootstrap-%d", i)
|
||||||
addr := net.JoinHostPort(tnet.FormatAddress(e), "6443")
|
addr := net.JoinHostPort(e, "6443")
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-ticker.C:
|
case <-ticker.C:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user