1
0
mirror of https://github.com/moby/moby.git synced 2025-07-27 20:02:03 +03:00

integration-cli: TestDockerNetworkHostModeUngracefulDaemonRestart start, not restart

This test was testing a non-gracceful kill od the daemon, after which it
started it again, however `d.Stop()` would log that the daemon wasn't running,
which is expected, so let's reduce noise;

    docker_cli_network_unix_test.go:1143: [dadd2ae3b638b] daemon is not started

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2025-07-12 17:35:51 +02:00
parent 9e69fc567e
commit 1c8b09ccf6

View File

@ -1140,7 +1140,7 @@ func (s *DockerNetworkSuite) TestDockerNetworkHostModeUngracefulDaemonRestart(c
// Kill daemon ungracefully and restart
assert.NilError(c, s.d.Kill())
s.d.Restart(c)
s.d.Start(c)
// make sure all the containers are up and running
for i := 0; i < 10; i++ {