We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0338599 commit e564ec1Copy full SHA for e564ec1
1 file changed
lambdas/allocation/src/allocator.ts
@@ -17,10 +17,9 @@ 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,
21
- Message: JSON.stringify(sqsCommand),
+ MessageGroupId: sqsCommand.input.MessageGroupId,
22
});
23
- deps.sqsClient.send(sqsCommand);
+ await deps.sqsClient.send(sqsCommand);
24
}
25
};
26
0 commit comments