From 9024140468e4cd54cad091e6fd322c63fc4c9413 Mon Sep 17 00:00:00 2001 From: Tim Allclair Date: Fri, 21 Feb 2025 09:30:04 -0800 Subject: [PATCH] Cleanup allocation checkpoint failure message --- pkg/kubelet/allocation/allocation_manager.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/kubelet/allocation/allocation_manager.go b/pkg/kubelet/allocation/allocation_manager.go index 53cb71bda4f..444f9d84149 100644 --- a/pkg/kubelet/allocation/allocation_manager.go +++ b/pkg/kubelet/allocation/allocation_manager.go @@ -62,7 +62,7 @@ func NewManager(checkpointDirectory string) Manager { stateImpl, err := state.NewStateCheckpoint(checkpointDirectory, podStatusManagerStateFile) if err != nil { // This is a crictical, non-recoverable failure. - klog.ErrorS(err, "Could not initialize pod allocation checkpoint manager, please drain node and remove policy state file") + klog.ErrorS(err, "Failed to initialize allocation checkpoint manager") panic(err) } m.state = stateImpl