mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
Merge pull request #34842 from dnephin/fix-integration-on-timeout
[integration-cli] Only attempt to find pid with local daemon Upstream-commit: c5c0702a4d523071b3e41a13c233b6ec9e261b06 Component: engine
This commit is contained in:
@@ -79,6 +79,9 @@ type DockerSuite struct {
|
||||
}
|
||||
|
||||
func (s *DockerSuite) OnTimeout(c *check.C) {
|
||||
if !testEnv.IsLocalDaemon() {
|
||||
return
|
||||
}
|
||||
path := filepath.Join(os.Getenv("DEST"), "docker.pid")
|
||||
b, err := ioutil.ReadFile(path)
|
||||
if err != nil {
|
||||
@@ -91,7 +94,7 @@ func (s *DockerSuite) OnTimeout(c *check.C) {
|
||||
}
|
||||
|
||||
daemonPid := int(rawPid)
|
||||
if daemonPid > 0 && testEnv.IsLocalDaemon() {
|
||||
if daemonPid > 0 {
|
||||
daemon.SignalDaemonDump(daemonPid)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user