Merge pull request #705 from crosbymichael/shim-dead

Handle restore with dead shim
This commit is contained in:
Kenfe-Mickaël Laventure 2017-04-07 14:42:07 -07:00 committed by GitHub
commit 49e3c116ef
4 changed files with 53 additions and 8 deletions

View file

@ -49,7 +49,7 @@ func (s *Service) Register(server *grpc.Server) error {
api.RegisterContainerServiceServer(server, s)
// load all containers
for _, r := range s.runtimes {
containers, err := r.Containers()
containers, err := r.Containers(context.Background())
if err != nil {
return err
}