fix: fix interrupt proxy mode but not rollout deploy bug

This commit is contained in:
fengcaiwen
2025-10-21 23:47:57 +08:00
committed by naison
parent cc1f08033e
commit e85b8b7451
2 changed files with 10 additions and 4 deletions

View File

@@ -47,8 +47,7 @@ func (l *ProxyList) Remove(ns, workload string) {
}
}
func (l *ProxyList) Add(managerNamespace string, proxy *Proxy) {
go proxy.portMapper.Run(managerNamespace)
func (l *ProxyList) Add(proxy *Proxy) {
*l = append(*l, proxy)
}