Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
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: 4 additions & 2 deletions google/cloud/debugger_v2/services/controller2/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,8 @@ def sample_list_active_breakpoints():
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand Down Expand Up @@ -522,7 +523,8 @@ def sample_update_active_breakpoint():
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ def _prep_wrapped_messages(self, client_info):
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand All @@ -150,7 +151,8 @@ def _prep_wrapped_messages(self, client_info):
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand Down
12 changes: 8 additions & 4 deletions google/cloud/debugger_v2/services/debugger2/async_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,8 @@ def sample_get_breakpoint():
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand Down Expand Up @@ -528,7 +529,8 @@ def sample_delete_breakpoint():
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand Down Expand Up @@ -632,7 +634,8 @@ def sample_list_breakpoints():
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand Down Expand Up @@ -739,7 +742,8 @@ def sample_list_debuggees():
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand Down
12 changes: 8 additions & 4 deletions google/cloud/debugger_v2/services/debugger2/transports/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ def _prep_wrapped_messages(self, client_info):
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand All @@ -151,7 +152,8 @@ def _prep_wrapped_messages(self, client_info):
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand All @@ -165,7 +167,8 @@ def _prep_wrapped_messages(self, client_info):
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand All @@ -179,7 +182,8 @@ def _prep_wrapped_messages(self, client_info):
maximum=60.0,
multiplier=1.3,
predicate=retries.if_exception_type(
core_exceptions.GoogleAPICallError,
core_exceptions.DeadlineExceeded,
core_exceptions.ServiceUnavailable,
),
deadline=600.0,
),
Expand Down
Loading