mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
This fix tries to address the issue raised in 30242 where the `Scope` field always changed to `swarm` in the ouput of `docker network ls/inspect` when duplicate networks name exist. The reason for the issue was that `buildNetworkResource()` use network name (which may not be unique) to check for the scope. This fix fixes the issue by always use network ID in `buildNetworkResource()`. A test has been added. The test fails before the fix and passes after the fix. This fix fixes 30242. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> Upstream-commit: 05a831a775be5e8d752deaef620e629deb15cb89 Component: engine