Skip to content

Commit 1cef0d4

Browse files
authored
fix: remove default timeout (#974)
Internal folks, see: go/microgenerator-retries > "Methods will **not** hedge by default." (emphasis mine) Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/python-bigquery/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea - [ ] Ensure the tests and linter pass - [ ] Code coverage does not decrease (if any source code was changed) - [ ] Appropriate docs were updated (if necessary) Fixes #970 🦕
1 parent 96e6bee commit 1cef0d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/cloud/bigquery/retry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def _should_retry(exc):
6060
pass ``retry=bigquery.DEFAULT_RETRY.with_deadline(30)``.
6161
"""
6262

63-
DEFAULT_TIMEOUT = 5.0 * 60.0
63+
DEFAULT_TIMEOUT = None
6464
"""The default API timeout.
6565
6666
This is the time to wait per request. To adjust the total wait time, set a

0 commit comments

Comments
 (0)