mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-01 23:55:58 -05:00
Fix serialisation error when creating the create_letters_pdf in resend_created_notifications_older_than
This commit is contained in:
@@ -205,7 +205,7 @@ def replay_created_notifications():
|
||||
|
||||
current_app.logger.info(msg)
|
||||
for letter in letters:
|
||||
create_letters_pdf.apply_async([letter.id], queue=QueueNames.LETTERS)
|
||||
create_letters_pdf.apply_async([str(letter.id)], queue=QueueNames.LETTERS)
|
||||
|
||||
|
||||
@notify_celery.task(name='check-precompiled-letter-state')
|
||||
|
||||
Reference in New Issue
Block a user