From fc4142f4345440ce287c8bc6744432ebdcf2bed9 Mon Sep 17 00:00:00 2001 From: Ryan Matsumoto Date: Tue, 21 Feb 2017 18:53:11 -0800 Subject: [PATCH] Changed read_write minimum amount to 300,000 as per bug --- spanner/cloud-client/snippets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spanner/cloud-client/snippets.py b/spanner/cloud-client/snippets.py index b80cf8dc798a..8d392f434cf8 100644 --- a/spanner/cloud-client/snippets.py +++ b/spanner/cloud-client/snippets.py @@ -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(