Merge pull request #281 from runcom/fix-nil-marshal-grpc

server: mock UpdateRuntimeConfig
This commit is contained in:
Mrunal Patel 2016-12-15 07:28:04 -08:00 committed by GitHub
commit 6e323e8bc9

View file

@ -7,5 +7,5 @@ import (
// UpdateRuntimeConfig updates the configuration of a running container.
func (s *Server) UpdateRuntimeConfig(ctx context.Context, req *pb.UpdateRuntimeConfigRequest) (*pb.UpdateRuntimeConfigResponse, error) {
return nil, nil
return &pb.UpdateRuntimeConfigResponse{}, nil
}