Skip to content

Commit 7b1f708

Browse files
Atualizar lambda_handler para extrair dados de participantes diretamente do corpo da mensagem, melhorando a lógica de processamento.
1 parent b9f5b59 commit 7b1f708

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lambda_function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def lambda_handler(event, context):
9494
try:
9595
logger.info("Starting Lambda execution")
9696
body = extract_data_body(event)
97-
participants_data = body.get('participants', [])
97+
participants_data = body
9898

9999
if not participants_data:
100100
logger.warning("No participants found in message")

0 commit comments

Comments
 (0)