Merge pull request #281 from runcom/fix-nil-marshal-grpc
server: mock UpdateRuntimeConfig
This commit is contained in:
commit
6e323e8bc9
1 changed files with 1 additions and 1 deletions
|
@ -7,5 +7,5 @@ import (
|
||||||
|
|
||||||
// UpdateRuntimeConfig updates the configuration of a running container.
|
// UpdateRuntimeConfig updates the configuration of a running container.
|
||||||
func (s *Server) UpdateRuntimeConfig(ctx context.Context, req *pb.UpdateRuntimeConfigRequest) (*pb.UpdateRuntimeConfigResponse, error) {
|
func (s *Server) UpdateRuntimeConfig(ctx context.Context, req *pb.UpdateRuntimeConfigRequest) (*pb.UpdateRuntimeConfigResponse, error) {
|
||||||
return nil, nil
|
return &pb.UpdateRuntimeConfigResponse{}, nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue