mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 14:55:02 +00:00
proxycfg: ensure all of the watches are canceled if they are cancelable (#11824)
This commit is contained in:
parent
f81dd817ff
commit
81ea8129d7
3
.changelog/11824.txt
Normal file
3
.changelog/11824.txt
Normal file
@ -0,0 +1,3 @@
|
||||
```release-note:bug
|
||||
proxycfg: ensure all of the watches are canceled if they are cancelable
|
||||
```
|
@ -273,11 +273,14 @@ func (s *handlerConnectProxy) handleUpdate(ctx context.Context, u cache.UpdateEv
|
||||
}
|
||||
|
||||
// Clean up data from services that were not in the update
|
||||
for sn := range snap.ConnectProxy.WatchedUpstreams {
|
||||
for sn, targets := range snap.ConnectProxy.WatchedUpstreams {
|
||||
if upstream, ok := snap.ConnectProxy.UpstreamConfig[sn]; ok && upstream.Datacenter != "" && upstream.Datacenter != s.source.Datacenter {
|
||||
continue
|
||||
}
|
||||
if _, ok := seenServices[sn]; !ok {
|
||||
for _, cancelFn := range targets {
|
||||
cancelFn()
|
||||
}
|
||||
delete(snap.ConnectProxy.WatchedUpstreams, sn)
|
||||
}
|
||||
}
|
||||
@ -289,11 +292,14 @@ func (s *handlerConnectProxy) handleUpdate(ctx context.Context, u cache.UpdateEv
|
||||
delete(snap.ConnectProxy.WatchedUpstreamEndpoints, sn)
|
||||
}
|
||||
}
|
||||
for sn := range snap.ConnectProxy.WatchedGateways {
|
||||
for sn, cancelMap := range snap.ConnectProxy.WatchedGateways {
|
||||
if upstream, ok := snap.ConnectProxy.UpstreamConfig[sn]; ok && upstream.Datacenter != "" && upstream.Datacenter != s.source.Datacenter {
|
||||
continue
|
||||
}
|
||||
if _, ok := seenServices[sn]; !ok {
|
||||
for _, cancelFn := range cancelMap {
|
||||
cancelFn()
|
||||
}
|
||||
delete(snap.ConnectProxy.WatchedGateways, sn)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user