Skip to content

Commit

Permalink
bump the deadline to 1200 for backup and restore
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo committed Apr 24, 2020
1 parent 9277283 commit 645d94b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spanner/cloud-client/backup_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def create_backup(instance_id, database_id, backup_id):
operation = backup.create()

# Wait for backup operation to complete.
operation.result(600)
operation.result(1200)

# Verify that the backup is ready.
backup.reload()
Expand All @@ -68,7 +68,7 @@ def restore_database(instance_id, new_database_id, backup_id):
operation = new_database.restore(backup)

# Wait for restore operation to complete.
operation.result(600)
operation.result(1200)

# Newly created database has restore information.
new_database.reload()
Expand Down

0 comments on commit 645d94b

Please sign in to comment.