summaryrefslogtreecommitdiff
path: root/libpod/define/errors.go
diff options
context:
space:
mode:
authorAlessandro Rossi <al.rossi87@gmail.com>2022-08-27 18:28:24 +0200
committeropenshift-cherrypick-robot <>2022-08-30 19:25:00 +0000
commit3439657f91eccae1e4cec2c3fb291d2c55bbe871 (patch)
treeca1e03b09e48148a8b46f9493471b0113f696db5 /libpod/define/errors.go
parentb401ac2a75f36d1c32551936907b3b1df8ecb070 (diff)
downloadpodman-3439657f91eccae1e4cec2c3fb291d2c55bbe871.tar.gz
podman-3439657f91eccae1e4cec2c3fb291d2c55bbe871.tar.bz2
podman-3439657f91eccae1e4cec2c3fb291d2c55bbe871.zip
Fix #15499 already connected network
Compat: Treat already attached networks as a no-op Applies only to containers in created state. Maintain error in running state. Co-authored-by: Alessandro Rossi <al.rossi87@gmail.com> Co-authored-by: Brent Baude <bbaude@redhat.com> Co-authored-by: Jason T. Greene <jason.greene@redhat.com> Signed-off-by: Alessandro Rossi <al.rossi87@gmail.com> Signed-off-by: Jason T. Greene <jason.greene@redhat.com>
Diffstat (limited to 'libpod/define/errors.go')
-rw-r--r--libpod/define/errors.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/define/errors.go b/libpod/define/errors.go
index fd27e89de..be471c27e 100644
--- a/libpod/define/errors.go
+++ b/libpod/define/errors.go
@@ -179,6 +179,9 @@ var (
// ErrNetworkInUse indicates the requested operation failed because the network was in use
ErrNetworkInUse = errors.New("network is being used")
+ // ErrNetworkConnected indicates that the required operation failed because the container is already a network endpoint
+ ErrNetworkConnected = errors.New("network is already connected")
+
// ErrStoreNotInitialized indicates that the container storage was never
// initialized.
ErrStoreNotInitialized = errors.New("the container storage was never initialized")