Change Forbidden Error (403) to Conflict(409)
Signed-off-by: Arko Dasgupta <arko.dasgupta@docker.com>
(cherry picked from commit 31e8fcc678
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
275bf7ec03
commit
d44a48835f
1 changed files with 2 additions and 1 deletions
|
@ -359,7 +359,8 @@ func (daemon *Daemon) findAndAttachNetwork(container *container.Container, idOrN
|
||||||
networkName := n.Name()
|
networkName := n.Name()
|
||||||
containerName := strings.TrimPrefix(container.Name, "/")
|
containerName := strings.TrimPrefix(container.Name, "/")
|
||||||
if network, ok := container.NetworkSettings.Networks[networkName]; ok && network.EndpointID != "" {
|
if network, ok := container.NetworkSettings.Networks[networkName]; ok && network.EndpointID != "" {
|
||||||
return n, nil, types.ForbiddenErrorf("%s is already attached to network %s", containerName, networkName)
|
err := fmt.Errorf("%s is already attached to network %s", containerName, networkName)
|
||||||
|
return n, nil, errdefs.Conflict(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue