Skip to content

Commit

Permalink
#2172 - Fix logging in retry
Browse files Browse the repository at this point in the history
  • Loading branch information
MackHalliday committed Feb 4, 2025
1 parent c99f7df commit e2ae94b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/celery/provider_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def deliver_push(

if retries < max_retries:
current_app.logger.warning(
'Push notification retrying: %s, max retries: %s, retries: %s', max_retries, retries
'Push notification retrying: %s, max retries: %s, retries: %s', vetext_payload, max_retries, retries
)
raise AutoRetryException('Found RetryableException, autoretrying...')
else:
Expand Down

0 comments on commit e2ae94b

Please sign in to comment.