Reputation: 49
I've been working on a Lambda function but the test for it is failing because it is no longer executing sequentially-but was yesterday.
Is there any way to enforce sequential execution?
Upvotes: 0
Views: 677
Reputation: 49
Just had to use Javascript promises to get it to run the functions in the order I want. Don't know why it only started being a problem part way through.
Upvotes: 1