Skip to content

Commit

Permalink
Fix missed merge resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Huffnagle committed Mar 19, 2018
1 parent acb7ede commit 5d9ad5d
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions packages/api/lambdas/jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,17 +130,7 @@ async function cleanup() {

const limit = pLimit(2);

<<<<<<< HEAD
await Promise.all(
executions.slice(0, 400).map(
(ex) => limit(
() => checkExecution(ex.arn, ex.execution, ex.timestamp, esClient)
)
)
);
=======
await Promise.all(executions.slice(0, 400).map((ex) => limit(() => checkExecution(ex.arn, ex.execution, ex.timestamp, esClient))));
>>>>>>> master
}

function handler(event, context, cb) {
Expand Down

0 comments on commit 5d9ad5d

Please sign in to comment.