Skip to content

Commit e3e62a6

Browse files
ryanmatsJon Wayne Parrott
authored and
Jon Wayne Parrott
committed
Changed read_write minimum amount to 300,000 as per bug [(googleapis#818)](GoogleCloudPlatform/python-docs-samples#818)
1 parent 7b81a23 commit e3e62a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/samples/snippets.py

Lines changed: 1 addition & 1 deletion
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)