server: fix ImagePullResponse
Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
aeea656581
commit
0e3ff61350
1 changed files with 3 additions and 1 deletions
|
@ -22,7 +22,9 @@ func (s *Server) PullImage(ctx context.Context, req *pb.PullImageRequest) (*pb.P
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
resp := &pb.PullImageResponse{}
|
resp := &pb.PullImageResponse{
|
||||||
|
ImageRef: &image,
|
||||||
|
}
|
||||||
logrus.Debugf("PullImageResponse: %+v", resp)
|
logrus.Debugf("PullImageResponse: %+v", resp)
|
||||||
return resp, nil
|
return resp, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue