diff --git a/libpod/healthcheck_unsupported.go b/libpod/healthcheck_unsupported.go index e8a8b77d08..c6ba52ea7d 100644 --- a/libpod/healthcheck_unsupported.go +++ b/libpod/healthcheck_unsupported.go @@ -5,21 +5,20 @@ package libpod import ( "context" - "errors" ) // createTimer systemd timers for healthchecks of a container func (c *Container) createTimer(interval string, isStartup bool) error { - return errors.New("not implemented (*Container) createTimer") + return nil } // startTimer starts a systemd timer for the healthchecks func (c *Container) startTimer(isStartup bool) error { - return errors.New("not implemented (*Container) startTimer") + return nil } // removeTransientFiles removes the systemd timer and unit files // for the container func (c *Container) removeTransientFiles(ctx context.Context, isStartup bool) error { - return errors.New("not implemented (*Container) removeTransientFiles") + return nil }