mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-25 06:52:13 +00:00
runtime: use s.ctx instead ctx for checking cancellation
s.ctx should be used for checking cancellation, and the local ctx is used for tracing. Fixes: #1804 Signed-off-by: bin <bin@hyper.sh>
This commit is contained in:
parent
d0eda5ecfd
commit
79831fafaf
@ -142,7 +142,7 @@ func watchOOMEvents(ctx context.Context, s *service) {
|
||||
|
||||
for {
|
||||
select {
|
||||
case <-ctx.Done():
|
||||
case <-s.ctx.Done():
|
||||
return
|
||||
default:
|
||||
containerID, err := s.sandbox.GetOOMEvent(ctx)
|
||||
|
Loading…
Reference in New Issue
Block a user