From d157c1427c88309ee3787d9685183965fd8825c1 Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Thu, 15 Dec 2016 14:31:42 +0100 Subject: [PATCH] server: mock UpdateRuntimeConfig Signed-off-by: Antonio Murdaca --- server/container_updateruntimeconfig.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/container_updateruntimeconfig.go b/server/container_updateruntimeconfig.go index 954ae047..39ca577c 100644 --- a/server/container_updateruntimeconfig.go +++ b/server/container_updateruntimeconfig.go @@ -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 }