From 47e60ffdc2589d6c530570113e40c2914c36377e Mon Sep 17 00:00:00 2001 From: Solomon Duskis Date: Fri, 26 Oct 2018 19:09:54 -0400 Subject: [PATCH] fix(samples): Fixing the Hello world (#339) The json for family name was incorrect --- samples/hello-world/index.js | 2 +- samples/hello-world/index.v6.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/hello-world/index.js b/samples/hello-world/index.js index 4e98e93bf..7f0e98924 100644 --- a/samples/hello-world/index.js +++ b/samples/hello-world/index.js @@ -51,7 +51,7 @@ const getRowGreeting = row => { const options = { families: [ { - id: COLUMN_FAMILY_ID, + name: COLUMN_FAMILY_ID, rule: { versions: 1, }, diff --git a/samples/hello-world/index.v6.js b/samples/hello-world/index.v6.js index d199c4be4..a46c935d5 100644 --- a/samples/hello-world/index.v6.js +++ b/samples/hello-world/index.v6.js @@ -48,7 +48,7 @@ co(function*() { const options = { families: [ { - id: COLUMN_FAMILY_ID, + name: COLUMN_FAMILY_ID, rule: { versions: 1, },