Skip to content
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