Skip to content

Commit

Permalink
Wip
Browse files Browse the repository at this point in the history
  • Loading branch information
levsh committed Apr 17, 2024
1 parent 44ab29c commit 241e215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arrlio/backends/rabbitmq.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ async def _on_result_message(
properties: aiormq.spec.Basic.Properties = message.header.properties
task_id: UUID = UUID(properties.message_id)

task_result: TaskResult = self.serializer.loads_task_result(message.body)
task_result: TaskResult = self.serializer.loads_task_result(message.body, headers=properties.headers)

if not no_ack:
await channel.basic_ack(message.delivery.delivery_tag)
Expand Down

0 comments on commit 241e215

Please sign in to comment.