From e392df118124b61acbf790ceed7e1b7103f638ad Mon Sep 17 00:00:00 2001 From: anjana_nandagopal Date: Tue, 10 Aug 2021 13:15:37 -0400 Subject: [PATCH] Update FunctionRpc.proto Add two more properties relating to function metadata to the protobuf, along with some clarifying comments that specify what the attributes are supposed to contian. --- src/proto/FunctionRpc.proto | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/proto/FunctionRpc.proto b/src/proto/FunctionRpc.proto index 14e5899..ee2a39b 100644 --- a/src/proto/FunctionRpc.proto +++ b/src/proto/FunctionRpc.proto @@ -271,8 +271,14 @@ message RpcFunctionMetadata { // Function language string language = 9; - // Raw binding info + // Raw binding info: string of jsonified binding metadata. One string = one binding repeated string raw_bindings = 10; + + // Retry Options: string representation of JObject retry options (maxRetryCount, intervals, etc.) + string retry_options = 11; + + // Configuration Source: string representation of JToken configuration source property in function metadata + string config_source = 12; } // Host tells worker it is ready to receive metadata