Skip to content

Commit

Permalink
feat: rename retry config env
Browse files Browse the repository at this point in the history
  • Loading branch information
deryrahman committed Apr 23, 2024
1 parent d878948 commit 6cecff3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion task/bq2bq/executor/bumblebee/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def __init__(self):
self._use_spillover = _bool_from_str(get_env_config("USE_SPILLOVER", default="true"))
self._concurrency = _validate_greater_than_zero(int(get_env_config("CONCURRENCY", default=1)))
self._allow_field_addition = _bool_from_str(get_env_config("ALLOW_FIELD_ADDITION", default="false"))
self._retry_timeout = get_env_config("RETRY_TIMEOUT", default=None)
self._retry_timeout = get_env_config("RETRY_TIMEOUT_IN_SECONDS", default=None)

@property
def destination_project(self) -> str:
Expand Down

0 comments on commit 6cecff3

Please sign in to comment.