server: fix ImagePullResponse

Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
Antonio Murdaca 2017-01-17 12:21:32 +01:00 committed by Nalin Dahyabhai
parent aeea656581
commit 0e3ff61350

View file

@ -22,7 +22,9 @@ func (s *Server) PullImage(ctx context.Context, req *pb.PullImageRequest) (*pb.P
if err != nil {
return nil, err
}
resp := &pb.PullImageResponse{}
resp := &pb.PullImageResponse{
ImageRef: &image,
}
logrus.Debugf("PullImageResponse: %+v", resp)
return resp, nil
}