Skip to content

Commit

Permalink
libpod: Track healthcheck API changes in healthcheck_unsupported.go
Browse files Browse the repository at this point in the history
Extra function arguments were added in containers#13909.

[NO NEW TESTS NEEDED]

Signed-off-by: Doug Rabson <[email protected]>
  • Loading branch information
dfr committed Dec 2, 2022
1 parent 51deb32 commit 6ed8dc1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libpod/healthcheck_unsupported.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ import (
)

// createTimer systemd timers for healthchecks of a container
func (c *Container) createTimer() error {
func (c *Container) createTimer(interval string, isStartup bool) error {
return errors.New("not implemented (*Container) createTimer")
}

// startTimer starts a systemd timer for the healthchecks
func (c *Container) startTimer() error {
func (c *Container) startTimer(isStartup bool) error {
return errors.New("not implemented (*Container) startTimer")
}

// removeTransientFiles removes the systemd timer and unit files
// for the container
func (c *Container) removeTransientFiles(ctx context.Context) error {
func (c *Container) removeTransientFiles(ctx context.Context, isStartup bool) error {
return errors.New("not implemented (*Container) removeTransientFiles")
}

0 comments on commit 6ed8dc1

Please sign in to comment.