Skip to content

Commit

Permalink
fixing bad .ts reference for lambda entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
mbonig committed Aug 25, 2020
1 parent a9777d3 commit d6074c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sqs-redrive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class SqsRedrive extends Construct {
const lambda = new NodejsFunction(this, `${id}-queue-redrive`, {
functionName: id,
...props.lambdaProps,
entry: join(__dirname, 'sqs-redrive.queue-redrive.ts'),
entry: join(__dirname, 'sqs-redrive.queue-redrive'),
environment: {
QUEUE_URL: props.mainQueue.queueUrl,
DLQ_URL: props.deadLetterQueue!.queueUrl,
Expand Down

0 comments on commit d6074c2

Please sign in to comment.