From 2483afae0bf3e3ea2316983b17e152a37813d21e Mon Sep 17 00:00:00 2001 From: Solomon Duskis Date: Wed, 24 Oct 2018 10:40:51 -0400 Subject: [PATCH] Fixing the Hello world 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 0467ddc1a..cd35f774e 100644 --- a/samples/hello-world/index.js +++ b/samples/hello-world/index.js @@ -52,7 +52,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 4893e6189..01550ec2a 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, },