Skip to content
This repository has been archived by the owner on Aug 25, 2023. It is now read-only.

Increasing retries and delay to make 500 errors causes by Datastore e… #13

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
2 changes: 1 addition & 1 deletion src/backup/after_backup_action_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __disable_partition_expiration(self, copy_job_results):
)

@staticmethod
@retry(DatastoreTableGetRetriableException, tries=5, delay=1, backoff=2)
@retry(DatastoreTableGetRetriableException, tries=6, delay=4, backoff=2)
def __create_backup(source_table_reference, source_table_metadata,
copy_job_results):

Expand Down