Skip to content

Commit d2b28e4

Browse files
ryanmatsJon Wayne Parrott
authored and
Jon Wayne Parrott
committed
Changed read_write minimum amount to 300,000 as per bug (GoogleCloudPlatform#818)
1 parent 11c4a20 commit d2b28e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spanner/cloud-client/snippets.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def update_albums(transaction):
320320

321321
transfer_amount = 200000
322322

323-
if second_album_budget < transfer_amount:
323+
if second_album_budget < 300000:
324324
# Raising an exception will automatically roll back the
325325
# transaction.
326326
raise ValueError(

0 commit comments

Comments
 (0)