mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Properly cleanup ingress sandbox in controller
When ingress sandbox is removed, properly cleanup the reference in the controller. Signed-off-by: Jana Radhakrishnan <mrjana@docker.com>
This commit is contained in:
parent
562fd97f8a
commit
8d1adbd665
1 changed files with 3 additions and 0 deletions
|
@ -245,6 +245,9 @@ func (sb *sandbox) delete(force bool) error {
|
|||
}
|
||||
|
||||
c.Lock()
|
||||
if sb.ingress {
|
||||
c.ingressSandbox = nil
|
||||
}
|
||||
delete(c.sandboxes, sb.ID())
|
||||
c.Unlock()
|
||||
|
||||
|
|
Loading…
Reference in a new issue