Skip to content

Commit

Permalink
Changed read_write minimum amount to 300,000 as per bug (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmats authored and Jon Wayne Parrott committed Feb 22, 2017
1 parent 11c4a20 commit d2b28e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spanner/cloud-client/snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def update_albums(transaction):

transfer_amount = 200000

if second_album_budget < transfer_amount:
if second_album_budget < 300000:
# Raising an exception will automatically roll back the
# transaction.
raise ValueError(
Expand Down

0 comments on commit d2b28e4

Please sign in to comment.