mirror of
https://github.com/containers/podman.git
synced 2025-11-29 09:37:38 +08:00
lint: reenable revive unused-parameter check
Signed-off-by: Matt Souza <medsouz99@gmail.com>
This commit is contained in:
@@ -7,17 +7,17 @@ import (
|
||||
)
|
||||
|
||||
// createTimer systemd timers for healthchecks of a container
|
||||
func (c *Container) createTimer(interval string, isStartup bool) error {
|
||||
func (c *Container) createTimer(_ string, _ bool) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// startTimer starts a systemd timer for the healthchecks
|
||||
func (c *Container) startTimer(isStartup bool) error {
|
||||
func (c *Container) startTimer(_ bool) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// removeTransientFiles removes the systemd timer and unit files
|
||||
// for the container
|
||||
func (c *Container) removeTransientFiles(ctx context.Context, isStartup bool, unitName string) error {
|
||||
func (c *Container) removeTransientFiles(_ context.Context, _ bool, _ string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user