From d2b28e42b15dc6aea62f88f57d527fb8cfafa5ce Mon Sep 17 00:00:00 2001 From: Ryan Matsumoto Date: Wed, 22 Feb 2017 09:24:55 -0800 Subject: [PATCH] Changed read_write minimum amount to 300,000 as per bug (#818) --- 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 feecd7707e29..59f3176ef855 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(