diff --git a/components/ws-daemon/pkg/iws/iws.go b/components/ws-daemon/pkg/iws/iws.go index c34c43c86450ab..22b0985d55ba20 100644 --- a/components/ws-daemon/pkg/iws/iws.go +++ b/components/ws-daemon/pkg/iws/iws.go @@ -934,7 +934,9 @@ func (wbs *InWorkspaceServiceServer) WorkspaceInfo(ctx context.Context, req *api resources, err := getWorkspaceResourceInfo(wbs.CGroupMountPoint, cgroupPath, unified) if err != nil { - log.WithError(err).Error("could not get resource information") + if !errors.Is(err, os.ErrNotExist) { + log.WithError(err).Error("could not get resource information") + } return nil, status.Error(codes.Unknown, err.Error()) }