Skip to content

Commit

Permalink
[Runtime] fix: fixed aws lambda handler method name
Browse files Browse the repository at this point in the history
  • Loading branch information
alekitto committed Nov 10, 2023
1 parent 800ae67 commit 05868f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runner/Jymfony/AwsLambdaHandlerRunner.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ export default class AwsLambdaHandlerRunner extends implementationOf(AwsLambdaRu
}

run() {
return this.#handler.handle(this.#event, this.#context);
return this.#handler.handleEvent(this.#event, this.#context);
}
}

0 comments on commit 05868f6

Please sign in to comment.