-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
ps: query health check in batch mode #17211
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: vrothberg The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Also do not return (and immediately suppress) an error if no health check is defined for a given container. Makes listing 100 containers around 10 percent faster. [NO NEW TESTS NEEDED] Signed-off-by: Valentin Rothberg <[email protected]>
return c.healthCheckStatus() | ||
} | ||
|
||
// Internal function to return the current state of a container with a healthcheck. | ||
// This function does not lock the container. | ||
func (c *Container) healthCheckStatus() (string, error) { | ||
if !c.HasHealthCheck() { | ||
return "", fmt.Errorf("container %s has no defined healthcheck", c.ID()) | ||
return "", nil | ||
} | ||
|
||
if err := c.syncContainer(); err != nil { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the syncContainer() here should be moved in the if !batched
branch just like the other public accessor functions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am sure there's more to polish in the health-check code but it's out of scope of this PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
/lgtm |
Also do not return (and immediately suppress) an error if no health check is defined for a given container.
Makes listing 100 containers around 10 percent faster.
[NO NEW TESTS NEEDED]
Signed-off-by: Valentin Rothberg [email protected]
@containers/podman-maintainers PTAL
Does this PR introduce a user-facing change?