We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebb7fc0 commit 0338599Copy full SHA for 0338599
1 file changed
lambdas/allocation/src/allocator.ts
@@ -17,7 +17,8 @@ export default function createAllocator(deps: Deps): SNSHandler {
17
for (const sqsCommand of sqsCommands) {
18
deps.logger.info({
19
description: "Placing message on queue",
20
- MessageGroupId: sqsCommand.MessageGroupId,
+ // MessageGroupId: sqsCommand.MessageGroupId,
21
+ Message: JSON.stringify(sqsCommand),
22
});
23
deps.sqsClient.send(sqsCommand);
24
}
0 commit comments