cri: close fifos when container is deleted
Signed-off-by: Henry Wang <henwang@amazon.com>
This commit is contained in:
		| @@ -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) | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Henry Wang
					Henry Wang