You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Atualizar SQSService para enviar múltiplas mensagens como uma lista e remover função de formatação de resultados não utilizada no lambda_handler, simplificando o código.
# Using order_id as MessageGroupId to ensure messages for the same order are processed in order
20
20
message_group_id=str(uuid.uuid4())
21
21
message_deduplication_id=str(uuid.uuid4())
22
+
logger.info(f"Enviando mensagem para a fila {self.queue_url} com MessageGroupId: {message_group_id} e MessageDeduplicationId: {message_deduplication_id}, com {len(messagens)} mensagens")
0 commit comments