Skip to content

Commit 1070a14

Browse files
author
Mario Tosso
authored
Merge pull request #75 from Testlio/feature/delay-version-update
delay version update
2 parents 2547433 + b7ca9e4 commit 1070a14

File tree

1 file changed

+10
-0
lines changed
  • lib/cf-resources/lambda-version-resource

1 file changed

+10
-0
lines changed

lib/cf-resources/lambda-version-resource/index.js

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ const lambda = new AWS.Lambda();
77

88
// Helpers
99

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+
1016
/**
1117
* Get function configuration by its name
1218
*
@@ -110,6 +116,10 @@ exports.handler = function(event, context) {
110116
version: _.find(versions, trimmedFn)
111117
};
112118
});
119+
}).then((results) => {
120+
return delay(getRandomInt(5000)).then(function() {
121+
return results;
122+
});
113123
}).then((results) => {
114124
const fn = results.fn;
115125
const version = results.version;

0 commit comments

Comments
 (0)