Move dialingListener setAddresses

pull/2713/head
Irena Rindos 3 years ago committed by GitHub
parent cc42c51e5e
commit a135127524
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -347,20 +347,6 @@ func (w *Worker) updateAddresses(cancelCtx context.Context, addrs []string, addr
event.WriteSysEvent(cancelCtx, op, fmt.Sprintf("Upstreams after first status set to: %s", addrs))
}
}
// regardless of whether or not it's a new address, we need to set
// them for dialingListeners
for _, as := range *addressReceivers {
switch {
case as.Type() == dialingListenerReceiverType:
tmpAddrs := make([]string, len(addrs))
copy(tmpAddrs, addrs)
if len(tmpAddrs) == 0 {
tmpAddrs = append(tmpAddrs, w.conf.RawConfig.Worker.InitialUpstreams...)
}
as.SetAddresses(tmpAddrs)
}
}
}
// cleanupConnections walks all sessions and shuts down all proxy connections.

Loading…
Cancel
Save