Skip to content

Commit ba03406

Browse files
committed
sample ID updated
1 parent f20b27f commit ba03406

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

samples/document-snippets/tests/family.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ const uuid = require(`uuid`);
2121
const Bigtable = require(`@google-cloud/bigtable`);
2222
const bigtable = new Bigtable();
2323

24-
const INSTANCE_ID = `nodejs-bigtable-samples-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules
25-
const CLUSTER_ID = `nodejs-bigtable-samples-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules
26-
const TABLE_ID = `nodejs-bigtable-samples-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules
27-
const FAMILY_ID = `nodejs-bigtable-samples-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules
24+
const INSTANCE_ID = `sample-instance-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules
25+
const CLUSTER_ID = `sample-cluster-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules
26+
const TABLE_ID = `sample-table-${uuid.v4()}`.substr(0, 30); // Bigtable naming rules
27+
const FAMILY_ID = `sample-family-${uuid.v4()}`.substr(0, 10); // Bigtable naming rules
2828

2929
const familySnippets = require('../family.js');
3030

0 commit comments

Comments
 (0)