1
0
mirror of https://github.com/docker/cli.git synced 2026-01-26 15:41:42 +03:00

Merge pull request #25384 from vieux/fix_wait_plugins

fix deadlock when more than 1 plugin is installed
Upstream-commit: 5de2e6d7b8494e662a7b53c287dad25bc6139747
Component: engine
This commit is contained in:
Vincent Demeester
2016-08-04 08:46:57 +02:00
committed by GitHub

View File

@@ -326,8 +326,8 @@ func (pm *Manager) init() error {
}
}
}(p)
group.Wait()
}
group.Wait()
return pm.save()
}