diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-21 05:25:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 05:25:19 -0400 |
commit | 41677b192aac6ae2849aa792e4ded856773712fd (patch) | |
tree | 6825fc6742e92a24ebc7785aeabc0956d8f2ce8e /libpod/define | |
parent | 0d3aa18f04aa72d23ddec1dac779c18ffb71cfb3 (diff) | |
parent | 6af4c08a50e02eb38ffa2be96359c14e10b5e5ba (diff) | |
download | podman-41677b192aac6ae2849aa792e4ded856773712fd.tar.gz podman-41677b192aac6ae2849aa792e4ded856773712fd.tar.bz2 podman-41677b192aac6ae2849aa792e4ded856773712fd.zip |
Merge pull request #8979 from haircommander/full-attach-path
Use full attach path, rather than a symlink
Diffstat (limited to 'libpod/define')
-rw-r--r-- | libpod/define/errors.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/define/errors.go b/libpod/define/errors.go index e19ac6a27..8d943099b 100644 --- a/libpod/define/errors.go +++ b/libpod/define/errors.go @@ -206,4 +206,8 @@ var ( // ErrCanceled indicates that an operation has been cancelled by a user. // Useful for potentially long running tasks. ErrCanceled = errors.New("cancelled by user") + + // ErrConmonVersionFormat is used when the expected versio-format of conmon + // has changed. + ErrConmonVersionFormat = "conmon version changed format" ) |