From c457e5187833d7890f2595d3a701236879c40bd7 Mon Sep 17 00:00:00 2001 From: cathyzbn Date: Fri, 12 Jul 2024 19:02:57 +0000 Subject: [PATCH] merge changes with WorkerFunctionGetInputRequest --- modal_proto/api.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modal_proto/api.proto b/modal_proto/api.proto index 3aa1763db..7c4759a4b 100644 --- a/modal_proto/api.proto +++ b/modal_proto/api.proto @@ -1087,8 +1087,10 @@ message FunctionGetInputsRequest { int32 max_values = 3; float average_call_time = 5; int32 input_concurrency = 6; // Container aims to fetch multiple inputs at the same time - int32 batch_max_size = 7; // Maximum number of inputs to fetch at once - float batch_linger_secs = 8; // Seconds to block before a response is needed + int32 max_values_to_fetch = 7; + float block_duration_secs = 8; + int32 batch_max_size = 9; // Maximum number of inputs to fetch at once + float batch_linger_secs = 10; // Seconds to block before a response is needed } message FunctionGetInputsResponse {