Skip to content
Closed
Changes from 1 commit
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 container/containerd/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ func (h *containerdContainerHandler) needNet() bool {
func (h *containerdContainerHandler) GetSpec() (info.ContainerSpec, error) {
// TODO: Since we dont collect disk usage stats for containerd, we set hasFilesystem
Comment thread
vasireddy99 marked this conversation as resolved.
Outdated
// to false. Revisit when we support disk usage stats for containerd
Comment thread
vasireddy99 marked this conversation as resolved.
Outdated
hasFilesystem := false
hasFilesystem := true
spec, err := common.GetSpec(h.cgroupPaths, h.machineInfoFactory, h.needNet(), hasFilesystem)
spec.Labels = h.labels
spec.Envs = h.envs
Expand Down