We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef0d7a5 commit d2a103fCopy full SHA for d2a103f
lambda/webhookHandler.ts
@@ -111,7 +111,7 @@ const handle = processNrplusMessagesAndUpdateThingShadow({
111
export const handler = middy<APIGatewayProxyEventV2, APIGatewayProxyResultV2>()
112
.use(inputOutputLogger())
113
.use(validateInput(inputSchemaLwm2mMessage))
114
- .handler(async (event, context): Promise<APIGatewayProxyResultV2> => {
+ .handler(async (event, context) => {
115
if (event.requestContext.http.method !== 'POST') {
116
return {
117
statusCode: 405,
0 commit comments