From 68dbf94c3c7f76b02bb747aaa439a2e0679df031 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Wed, 7 Sep 2016 14:26:13 -0400 Subject: [PATCH] Shorten instance ID to match restrictions. --- system_tests/bigtable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system_tests/bigtable.py b/system_tests/bigtable.py index ea79eaa73fc6..214ba9b921e7 100644 --- a/system_tests/bigtable.py +++ b/system_tests/bigtable.py @@ -37,7 +37,7 @@ LOCATION_ID = 'us-central1-c' -INSTANCE_ID = 'google-cloud' + unique_resource_id('-') +INSTANCE_ID = 'g-c-p' + unique_resource_id('-') TABLE_ID = 'google-cloud-python-test-table' COLUMN_FAMILY_ID1 = u'col-fam-id1' COLUMN_FAMILY_ID2 = u'col-fam-id2'