Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update index.js #566

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions functions/helloworld/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,21 @@ exports.helloGCS = (event, callback) => {
*/
exports.helloGCSGeneric = (event, callback) => {
const file = event.data;
const context = event.context;

console.log(`Event ${context.eventId}`);
console.log(` Event Type: ${context.eventType}`);
//BEGINNING CHANGES
// These three lines cause this code to crash when executed as
// a cloud function in the "Cloud Storage Tutorial"
// (https://cloud.google.com/functions/docs/tutorials/storage#unix)
// const context = event.context; // event.context is 'undefined'
// console.log(`Event ${context.eventId}`); // causes function to crash. Should have been file.
// console.log(` Event Type: ${context.eventType}`); // causes function to crash. Should have been file.

// use 'file.' instead of 'context.'
console.log(`Event ${file.eventId}`);
console.log(` Event Type: ${file.eventType}`);
//END CHANGES


console.log(` Bucket: ${file.bucket}`);
console.log(` File: ${file.name}`);
console.log(` Metageneration: ${file.metageneration}`);
Expand Down