Skip to content

Commit ba5910d

Browse files
committed
merge fix for retry logic
2 parents 9e2c26a + fe9dd0b commit ba5910d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

serverless.component.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: express
2-
version: 1.7.0
2+
version: 1.7.1
33
author: eahefnawy
44
org: serverlessinc
55
description: Deploys a serverless Express.js application onto AWS Lambda and AWS HTTP API.

src/utils.js

+6
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,9 @@ const createLambda = async (instance, inputs, clients, retries = 0) => {
335335
);
336336
}
337337
}
338+
// Try again. We often to wait around 3 seconds after the role is created before it can be assumed
339+
await sleep(3000);
340+
return createLambda(instance, inputs, clients, retries);
338341
}
339342

340343
if (
@@ -351,6 +354,9 @@ const createLambda = async (instance, inputs, clients, retries = 0) => {
351354
'Unable to create the AWS Lambda function which your Express.js app runs on. The reason is "Lambda was unable to configure access to your environment variables because the KMS key is invalid". This is a known issue with AWS Lambda\'s APIs, and there is nothing the Serverless Framework can do to help with it at this time. We suggest trying to remove this instance by running "serverless remove" then redeploying to attempt to get around this.'
352355
);
353356
}
357+
// Retry.
358+
await sleep(3000);
359+
return createLambda(instance, inputs, clients, retries);
354360
}
355361

356362
throw e;

0 commit comments

Comments
 (0)