File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Open diff view settings
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Open diff view settings
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ var AWS_HANDLER = process.env.AWS_HANDLER || 'index.handler';
1616var AWS_MODE = 'event' ;
1717var AWS_ROLE = process . env . AWS_ROLE || 'missing' ;
1818var AWS_MEMORY_SIZE = process . env . AWS_MEMORY_SIZE || 128 ;
19- var AWS_TIMEOUT = process . env . AWS_TIMEOUT || 3 ;
19+ var AWS_TIMEOUT = process . env . AWS_TIMEOUT || 60 ;
2020var AWS_DESCRIPTION = process . env . AWS_DESCRIPTION || '' ;
2121var AWS_RUNTIME = process . env . AWS_RUNTIME || 'nodejs' ;
2222var AWS_FUNCTION_VERSION = process . env . AWS_FUNCTION_VERSION || packageJson . version ;
Original file line number Diff line number Diff line change 11{
22 "name" : " node-lambda" ,
3- "version" : " 0.3.13 " ,
3+ "version" : " 0.3.14 " ,
44 "description" : " Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda." ,
55 "main" : " lib/main.js" ,
66 "directories" : {
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ describe('node-lambda', function() {
3636 } ) ;
3737
3838 it ( 'version should be set' , function ( ) {
39- assert . equal ( lambda . version , '0.3.13 ' ) ;
39+ assert . equal ( lambda . version , '0.3.14 ' ) ;
4040 } ) ;
4141
4242 describe ( '_params' , function ( ) {
@@ -87,7 +87,7 @@ describe('node-lambda', function() {
8787 } ) ;
8888
8989 it ( '_npm adds node_modules' , function ( done ) {
90- this . timeout ( 5000 ) ; // give it time to build the node modules
90+ this . timeout ( 10000 ) ; // give it time to build the node modules
9191
9292 lambda . _npmInstall ( program , codeDirectory , function ( err , result ) {
9393 var contents = fs . readdirSync ( codeDirectory ) ;
You can’t perform that action at this time.
0 commit comments