diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2018-02-02 19:43:19 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-02 19:43:19 +0000 |
commit | 3ea23f84818a816104ccdcf6b836ac4bb3a7c366 (patch) | |
tree | 7ccc25d859c97ca2cad5282d7e0f4eb9a445c2e3 /vendor/github.com/containerd/cgroups/errors.go | |
parent | a01f708df5d378af6ff4e804464b34f7c9be2b5d (diff) | |
parent | a417e6e0cc46593eb10d2ce3d5102df39d44b8dd (diff) | |
download | podman-3ea23f84818a816104ccdcf6b836ac4bb3a7c366.tar.gz podman-3ea23f84818a816104ccdcf6b836ac4bb3a7c366.tar.bz2 podman-3ea23f84818a816104ccdcf6b836ac4bb3a7c366.zip |
Merge pull request #284 from mheon/update_vendors
Update containerd/cgroups to fix perf issue
Diffstat (limited to 'vendor/github.com/containerd/cgroups/errors.go')
-rw-r--r-- | vendor/github.com/containerd/cgroups/errors.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/containerd/cgroups/errors.go b/vendor/github.com/containerd/cgroups/errors.go index d18b4b1df..a5824fe23 100644 --- a/vendor/github.com/containerd/cgroups/errors.go +++ b/vendor/github.com/containerd/cgroups/errors.go @@ -12,7 +12,7 @@ var ( ErrFreezerNotSupported = errors.New("cgroups: freezer cgroup not supported on this system") ErrMemoryNotSupported = errors.New("cgroups: memory cgroup not supported on this system") ErrCgroupDeleted = errors.New("cgroups: cgroup deleted") - ErrNoCgroupMountDestination = errors.New("cgroups: cannot found cgroup mount destination") + ErrNoCgroupMountDestination = errors.New("cgroups: cannot find cgroup mount destination") ) // ErrorHandler is a function that handles and acts on errors |