From 636037e3b6b40b7de83439b98b36d7b5f6589bd0 Mon Sep 17 00:00:00 2001 From: vijay-qlogic Date: Sat, 4 Aug 2018 12:58:32 +0530 Subject: [PATCH] sample ID updated --- samples/document-snippets/tests/family.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/samples/document-snippets/tests/family.js b/samples/document-snippets/tests/family.js index a702a0217..3bcdd6603 100644 --- a/samples/document-snippets/tests/family.js +++ b/samples/document-snippets/tests/family.js @@ -21,10 +21,10 @@ const uuid = require(`uuid`); const Bigtable = require(`@google-cloud/bigtable`); const bigtable = new Bigtable(); -const INSTANCE_ID = `nodejs-bigtable-samples-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules -const CLUSTER_ID = `nodejs-bigtable-samples-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules -const TABLE_ID = `nodejs-bigtable-samples-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules -const FAMILY_ID = `nodejs-bigtable-samples-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules +const INSTANCE_ID = `sample-instance-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules +const CLUSTER_ID = `sample-cluster-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules +const TABLE_ID = `sample-table-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules +const FAMILY_ID = `sample-family-${uuid.v4()}`.substr(0, 10); // Bigtable naming rules const familySnippets = require('../family.js');