We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2547433 + b7ca9e4 commit 1070a14Copy full SHA for 1070a14
lib/cf-resources/lambda-version-resource/index.js
@@ -7,6 +7,12 @@ const lambda = new AWS.Lambda();
7
8
// Helpers
9
10
+const delay = ms => new Promise(resolve => setTimeout(resolve, ms));
11
+
12
+function getRandomInt(max) {
13
+ return Math.floor(Math.random() * Math.floor(max));
14
+}
15
16
/**
17
* Get function configuration by its name
18
*
@@ -110,6 +116,10 @@ exports.handler = function(event, context) {
110
116
version: _.find(versions, trimmedFn)
111
117
};
112
118
});
119
+ }).then((results) => {
120
+ return delay(getRandomInt(5000)).then(function() {
121
+ return results;
122
+ });
113
123
}).then((results) => {
114
124
const fn = results.fn;
115
125
const version = results.version;
0 commit comments