diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-27 16:15:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 16:15:09 +0200 |
commit | ca1c674d2e027b563c3e9fd92c335eb3f5e5e05d (patch) | |
tree | 00dbd2d1590ed9f7fa59531dae3d1f63fdcbf014 /pkg/api/handlers/utils/errors.go | |
parent | fdf64f0c66be4569732b830ce60c98f98a7efe64 (diff) | |
parent | 7ee0f7e14c3105be1ef9c8aee00a09b479303677 (diff) | |
download | podman-ca1c674d2e027b563c3e9fd92c335eb3f5e5e05d.tar.gz podman-ca1c674d2e027b563c3e9fd92c335eb3f5e5e05d.tar.bz2 podman-ca1c674d2e027b563c3e9fd92c335eb3f5e5e05d.zip |
Merge pull request #5966 from vrothberg/v2-pod-stats
implement pod stats
Diffstat (limited to 'pkg/api/handlers/utils/errors.go')
-rw-r--r-- | pkg/api/handlers/utils/errors.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/api/handlers/utils/errors.go b/pkg/api/handlers/utils/errors.go index aafc64353..3253a9be3 100644 --- a/pkg/api/handlers/utils/errors.go +++ b/pkg/api/handlers/utils/errors.go @@ -14,6 +14,9 @@ var ( ErrLinkNotSupport = errors.New("Link is not supported") ) +// TODO: document the exported functions in this file and make them more +// generic (e.g., not tied to one ctr/pod). + // Error formats an API response to an error // // apiMessage and code must match the container API, and are sent to client |