Skip to content

Commit

Permalink
fix(InvocationsControllor): typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
catherine_baird committed Jul 28, 2023
1 parent 13bfe09 commit 49d94f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lambda/routes/invocations/InvocationsController.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class InvocationsController {
const functionNames = this.#lambda.listFunctionNames()
if (functionNames.length === 0 || !functionNames.includes(functionName)) {
log.error(
`Attempt to invoke function '${functionName}' failed. Function does not exists.`,
`Attempt to invoke function '${functionName}' failed. Function does not exist.`,
)
// Conforms to the actual response from AWS Lambda when invoking a non-existent
// function. Details on the error are provided in the Payload.Message key
Expand Down

0 comments on commit 49d94f2

Please sign in to comment.