Skip to content

Commit

Permalink
ISSUE-934 Lambda default InvocationType not handled correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
francisu committed Mar 23, 2020
1 parent 865a3a1 commit 60c7260
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lambda/routes/invocations/InvocationsController.js
Expand Up @@ -25,7 +25,7 @@ export default class InvocationsController {
}
}

if (invocationType === 'RequestResponse') {
if (!invocationType || invocationType === 'RequestResponse') {
let result

try {
Expand Down

0 comments on commit 60c7260

Please sign in to comment.