Skip to content

Commit

Permalink
Rename scale-runners to scale-up
Browse files Browse the repository at this point in the history
  • Loading branch information
gertjanmaas committed May 11, 2020
1 parent c80615e commit 64d811f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/runners/lambdas/scale-runners/src/lambda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { scaleUp } from './scale-runners/scale-up';
import { scaleDown } from './scale-runners/scale-down';
import { SQSEvent } from 'aws-lambda';

module.exports.handler = async (event: SQSEvent, context: any, callback: any) => {
module.exports.scaleUp = async (event: SQSEvent, context: any, callback: any) => {
console.log(event);
try {
for (const e of event.Records) {
Expand Down

0 comments on commit 64d811f

Please sign in to comment.