From 280e8f4dda703522e4c00eed0937ca9c6c3a7f1c Mon Sep 17 00:00:00 2001 From: Marc Sluiter Date: Fri, 5 Jul 2024 09:49:54 +0200 Subject: [PATCH] Fix log message Signed-off-by: Marc Sluiter --- pkg/reboot/calculator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/reboot/calculator.go b/pkg/reboot/calculator.go index af6bfdd1..d6366868 100644 --- a/pkg/reboot/calculator.go +++ b/pkg/reboot/calculator.go @@ -78,7 +78,7 @@ func (r *calculator) GetRebootDuration(ctx context.Context, node *v1.Node) (time specRebootDurationSeconds := r.snrConfig.Spec.SafeTimeToAssumeNodeRebootedSeconds if specRebootDurationSeconds == nil { r.log.Info("No SafeTimeToAssumeNodeRebootedSeconds specified, using calculated minimum safe reboot time", - "calculated minimum time in seconds", minimumCalculatedRebootDuration) + "calculated minimum time in seconds", minimumCalculatedRebootDuration.Seconds()) return minimumCalculatedRebootDuration, nil }