Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Bring back timeout millis in GAPIC config v2 #2708

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/main/proto/com/google/api/codegen/v2/config_v2.proto
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ message MethodConfigProto {
// The fully qualified name of the method.
string name = 1;

reserved 2, 3, 7, 8, 9, 11, 14, 15;
reserved 2, 3, 7, 8, 9, 14, 15;

// Specifies the configuration for gRPC-streaming responses.
// Note that this is for configuring paged gRPC-streaming responses.
Expand All @@ -180,6 +180,10 @@ message MethodConfigProto {
// The name must be defined in InterfaceConfigProto::retry_params_def.
string retry_params_name = 5;

// Specifies the default timeout for a non-retrying call. If the call is
// retrying, refer to `retry_params_name` instead.
uint64 timeout_millis = 11; // UNSUPPORTED in Java, C#, PHP, Go.

// Specifies the configuration for batching.
BatchingConfigProto batching = 6;

Expand Down