Skip to content

Commit d2a103f

Browse files
Update lambda/webhookHandler.ts
Co-authored-by: Markus Tacker <[email protected]>
1 parent ef0d7a5 commit d2a103f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lambda/webhookHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const handle = processNrplusMessagesAndUpdateThingShadow({
111111
export const handler = middy<APIGatewayProxyEventV2, APIGatewayProxyResultV2>()
112112
.use(inputOutputLogger())
113113
.use(validateInput(inputSchemaLwm2mMessage))
114-
.handler(async (event, context): Promise<APIGatewayProxyResultV2> => {
114+
.handler(async (event, context) => {
115115
if (event.requestContext.http.method !== 'POST') {
116116
return {
117117
statusCode: 405,

0 commit comments

Comments
 (0)