From 2b96ce967874819b7529870f6cfe31fba8fb33c9 Mon Sep 17 00:00:00 2001 From: Hugome Date: Sat, 27 Mar 2021 00:27:23 +0100 Subject: [PATCH] feat: add shutdown (#42) --- dapr/proto/runtime/v1/dapr.proto | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dapr/proto/runtime/v1/dapr.proto b/dapr/proto/runtime/v1/dapr.proto index 94ca020..8b4d6cc 100644 --- a/dapr/proto/runtime/v1/dapr.proto +++ b/dapr/proto/runtime/v1/dapr.proto @@ -77,6 +77,9 @@ service Dapr { // Sets value in extended metadata of the sidecar rpc SetMetadata (SetMetadataRequest) returns (google.protobuf.Empty) {} + + // Shutdown the sidecar + rpc Shutdown (google.protobuf.Empty) returns (google.protobuf.Empty) {} } // InvokeServiceRequest represents the request message for Service invocation.