Skip to content

Commit

Permalink
fix: send continuation message to sqs in add step
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul Kumar Singh committed Feb 25, 2025
1 parent 0ea1ab9 commit 28d1c3b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/common/audit-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ export async function sendContinuationMessage(message, context) {
try {
const { sqs } = context;
await sqs.sendMessage(queueUrl, payload);

// await sqs.sendMessage({
// QueueUrl: queueUrl,
// MessageBody: JSON.stringify(payload),
// });
} catch (e) {
log.error(`Failed to send message to queue ${queueUrl}`, e);
throw e;
Expand Down

0 comments on commit 28d1c3b

Please sign in to comment.