aboutsummaryrefslogtreecommitdiff
path: root/test/e2e/network_connect_disconnect_test.go
Commit message (Collapse)AuthorAge
* Fix podman network disconnect wrong NetworkStatus numberPaul Holzinger2021-02-04
| | | | | | | | | | | | | The allocated `tmpNetworkStatus` must be allocated with the length 0. Otherwise append would add new elements to the end of the slice and not at the beginning of the allocated memory. This caused inspect to fail since the number of networks did not matched the number of network statuses. Fixes #9234 Signed-off-by: Paul Holzinger <paul.holzinger@web.de>
* SpellingJosh Soref2020-12-22
| | | | Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
* network connect disconnect on non-running containersbaude2020-11-30
a container can connect and disconnet to networks even when not in a running state. Signed-off-by: baude <bbaude@redhat.com>