Skip to content

Commit

Permalink
fix log
Browse files Browse the repository at this point in the history
  • Loading branch information
geanportugal committed May 31, 2024
1 parent 9d77767 commit f84a4af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion alfred/sqs/sqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,10 @@ def apply_async(self, args=[], kwargs={}, queue_url=None, countdown=default_dela
"retries": self.retries,
}

queue_url = queue_url or self.queue_url

message_params = {
"QueueUrl": queue_url or self.queue_url,
"QueueUrl": queue_url,
"MessageBody": json.dumps(body),
}

Expand Down

0 comments on commit f84a4af

Please sign in to comment.