Skip to content
Merged
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
4 changes: 2 additions & 2 deletions functions/helloworld/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ exports.helloGCSGeneric = (event, callback) => {
* @param {function} callback The callback function.
*/
exports.helloError = (event, callback) => {
// This WILL be reported to Stackdriver errors
// This WILL be reported to Stackdriver Error Reporting
throw new Error('I failed you');
};
// [END functions_helloworld_error]
Expand All @@ -142,7 +142,7 @@ exports.helloError = (event, callback) => {
* @param {function} callback The callback function.
*/
exports.helloError2 = (event, callback) => {
// This will NOT be reported to Stackdriver errors
// This will NOT be reported to Stackdriver Error Reporting
throw 1;
};
// [END functions_helloworld_error_2]
Expand Down