Return DeleteResponse from ContainerService.Delete
The message was defined but the method was returning empty, plumb through the result from the shim layer. Compile tested only. Signed-off-by: Ian Campbell <ian.campbell@docker.com>
This commit is contained in:
parent
4793f968e5
commit
186a9a2acd
6 changed files with 54 additions and 52 deletions
|
@ -11,7 +11,7 @@ import "github.com/docker/containerd/api/types/container/container.proto";
|
|||
service ContainerService {
|
||||
rpc Create(CreateRequest) returns (CreateResponse);
|
||||
rpc Start(StartRequest) returns (google.protobuf.Empty);
|
||||
rpc Delete(DeleteRequest) returns (google.protobuf.Empty);
|
||||
rpc Delete(DeleteRequest) returns (DeleteResponse);
|
||||
rpc Info(InfoRequest) returns (containerd.v1.types.Container);
|
||||
rpc List(ListRequest) returns (ListResponse);
|
||||
rpc Events(EventsRequest) returns (stream containerd.v1.types.Event);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue