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 829cc29 commit 32df952Copy full SHA for 32df952
lambdas/core-notifier-lambda/src/app/parse-sqs-message.ts
@@ -17,8 +17,13 @@ export const parseSqsRecord = (
17
});
18
const sqsEventBody = JSON.parse(sqsRecord.body);
19
const sqsEventDetail = sqsEventBody.detail;
20
- const isEventValid = eventValidator(sqsEventDetail);
21
- if (!isEventValid) {
+
+ console.log("########## DELETE");
22
+ console.log(messagePDMResourceAvailableValidator);
23
+ console.log(eventValidator);
24
+ console.log("########## END DELETE");
25
26
+ if (!eventValidator(sqsEventDetail)) {
27
logger.error({
28
err: messagePDMResourceAvailableValidator.errors,
29
description:
0 commit comments