Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/guest/runtime/hcsv2/sandbox_container.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func setupSandboxContainerSpec(ctx context.Context, id, sandboxRoot string, spec
if virtualSandboxID != "" {
sandboxID = virtualSandboxID
}
spec.Linux.CgroupsPath = fmt.Sprintf(podCgroupPathFmt, sandboxID)
spec.Linux.CgroupsPath = fmt.Sprintf(containerCgroupPathFmt, sandboxID, id)

// Clear the windows section as we dont want to forward to runc
spec.Windows = nil
Expand Down
Loading