cri: close fifos when container is deleted
Signed-off-by: Henry Wang <henwang@amazon.com>
This commit is contained in:
parent
0c2b6a102a
commit
8710d4d014
@ -200,7 +200,11 @@ func (s *Store) Delete(id string) {
|
||||
// So we need to return if there are error.
|
||||
return
|
||||
}
|
||||
s.labels.Release(s.containers[id].ProcessLabel)
|
||||
c := s.containers[id]
|
||||
if c.IO != nil {
|
||||
c.IO.Close()
|
||||
}
|
||||
s.labels.Release(c.ProcessLabel)
|
||||
s.idIndex.Delete(id) // nolint: errcheck
|
||||
delete(s.containers, id)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user