Skip to content

Commit

Permalink
Merge pull request #935 from francisu/issue-934
Browse files Browse the repository at this point in the history
ISSUE-934 Lambda default InvocationType not handled correctly
  • Loading branch information
dherault committed Mar 24, 2020
2 parents aefe296 + 60c7260 commit 183313d
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 183313d

Please sign in to comment.