Skip to content

Commit

Permalink
backport of commit 8d6067e
Browse files Browse the repository at this point in the history
  • Loading branch information
jrasell authored Jan 29, 2024
1 parent 4a19638 commit 020bab0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/19830.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
driver/qemu: Ensure the OOM killed response is populated when the task exits
```
5 changes: 3 additions & 2 deletions drivers/qemu/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -743,8 +743,9 @@ func (d *Driver) handleWait(ctx context.Context, handle *taskHandle, ch chan *dr
}
} else {
result = &drivers.ExitResult{
ExitCode: ps.ExitCode,
Signal: ps.Signal,
ExitCode: ps.ExitCode,
Signal: ps.Signal,
OOMKilled: ps.OOMKilled,
}
}

Expand Down

0 comments on commit 020bab0

Please sign in to comment.