Skip to content

Commit 9024140

Browse files
committed
Cleanup allocation checkpoint failure message
1 parent fe46713 commit 9024140

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/kubelet/allocation/allocation_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func NewManager(checkpointDirectory string) Manager {
6262
stateImpl, err := state.NewStateCheckpoint(checkpointDirectory, podStatusManagerStateFile)
6363
if err != nil {
6464
// This is a crictical, non-recoverable failure.
65-
klog.ErrorS(err, "Could not initialize pod allocation checkpoint manager, please drain node and remove policy state file")
65+
klog.ErrorS(err, "Failed to initialize allocation checkpoint manager")
6666
panic(err)
6767
}
6868
m.state = stateImpl

0 commit comments

Comments
 (0)