cloud-nodejs icon indicating copy to clipboard operation
cloud-nodejs copied to clipboard

Bug/Typo in Step 9 (Upload of Images)

Open manikantan-k opened this issue 8 years ago • 1 comments

// AS-IS In file book.js var dataset = gcloud.datastore.dataset();

// TO BE This is the corrected code - var datastore = gcloud.datastore({ projectId: config.projectId, keyFilename: config.keyFilename });

The problem with this code is that datastore.dataset() is an invalid function and the entire dataset variable is not used in the code thereafter. probably got pasted from somewhere else ?

manikantan-k avatar Oct 19 '16 04:10 manikantan-k