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

Commit

Permalink
YACHT-1068: Fixed handling of 409 while scheduling copy job in BBQ
Browse files Browse the repository at this point in the history
  • Loading branch information
przemyslaw-jasinski committed Oct 18, 2018
1 parent 4221e3f commit 3bf03b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backup/copy_job_async/copy_job/copy_job_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __schedule(source_big_query_table, target_big_query_table, job_id):
logging.exception('404 while creating Copy Job from %s to %s' % (source_big_query_table, target_big_query_table))
return None
elif bq_error.resp.status == 409:
logging.exception('409 while creating Copy Job from %s to %s' % (source_big_query_table, target_big_query_table))
logging.warning('409 while creating Copy Job from %s to %s' % (source_big_query_table, target_big_query_table))
return job_id
else:
raise
Expand Down

0 comments on commit 3bf03b2

Please sign in to comment.