From 6ed8dc17cea3258e490a4e5c05db1cf2508176cf Mon Sep 17 00:00:00 2001 From: Doug Rabson Date: Fri, 2 Dec 2022 16:41:16 +0000 Subject: [PATCH] libpod: Track healthcheck API changes in healthcheck_unsupported.go Extra function arguments were added in #13909. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson --- libpod/healthcheck_unsupported.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libpod/healthcheck_unsupported.go b/libpod/healthcheck_unsupported.go index 92cd5d0a34..e8a8b77d08 100644 --- a/libpod/healthcheck_unsupported.go +++ b/libpod/healthcheck_unsupported.go @@ -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") }