We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67a562 commit 9d18e90Copy full SHA for 9d18e90
pkg/kubelet/status/state/checkpoint.go
@@ -43,7 +43,7 @@ func NewCheckpoint(allocations *PodResourceAllocationInfo) (*Checkpoint, error)
43
44
serializedAllocations, err := json.Marshal(allocations)
45
if err != nil {
46
- return nil, err
+ return nil, fmt.Errorf("failed to serialize allocations for checkpointing: %w", err)
47
}
48
49
cp := &Checkpoint{
0 commit comments