Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React to health_status events #1447

Merged
merged 1 commit into from
Oct 12, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,6 @@ class Application extends React.Component {
case 'export':
case 'import':
case 'init':
case 'health_status': // HACK: broken, https://github.com/containers/podman/issues/19237; see exec_died
case 'kill':
case 'mount':
case 'prune':
Expand All @@ -360,7 +359,8 @@ class Application extends React.Component {
case 'cleanup':
case 'create':
case 'died':
case 'exec_died': // HACK: pick up health check runs, see https://github.com/containers/podman/issues/19237
case 'exec_died': // HACK: pick up health check runs with older podman versions, see https://github.com/containers/podman/issues/19237
case 'health_status':
case 'pause':
case 'restore':
case 'stop':
Expand Down