Fixed up lambda-node to work with multi-stage changes.

This commit is contained in:
Travis Reeder
2017-06-19 11:28:14 -07:00
parent 345da3fcb3
commit c6a315ae7d
15 changed files with 386 additions and 30 deletions

View File

@@ -7,6 +7,6 @@ exports.handler = (event, context, callback) => {
console.log('value1 =', event.key1);
console.log('value2 =', event.key2);
console.log('value3 =', event.key3);
callback(null, event.key1); // Echo back the first key value
callback(null, "hello " + event.key1); // Echo back the first key value
//callback('Something went wrong');
};