Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Fix handler to current style
  • Loading branch information
abetomo committed May 10, 2017
commit d74f6cba987658b2dc2277d4d94b50f158d530fd
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// For development/testing purposes
exports.handler = function( event, context ) {
exports.handler = function(event, context, callback) {
console.log( "Running index.handler" );
console.log( "==================================");
console.log( "event", event );
console.log( "==================================");
console.log( "Stopping index.handler" );
context.done( );
callback(null);
};