Skip to content
Snippets Groups Projects
Commit c2e4a969 authored by Robin Sonnabend's avatar Robin Sonnabend
Browse files

Fix remind finishing task

parent 6eb0583d
Branches
No related tags found
No related merge requests found
......@@ -673,10 +673,10 @@ def send_reminder_async(reminder_id, protocol_id):
reminder_text, reply_to=protocol.protocoltype.private_mail)
def remind_finishing(protocol, delay_days, min_delay_days):
remind_finishing.delay(protocol.id, delay_days, min_delay_days)
remind_finishing_async.delay(protocol.id, delay_days, min_delay_days)
@celery.task
def remind_finishing(protocol_id, delay_days, min_delay_days):
def remind_finishing_async(protocol_id, delay_days, min_delay_days):
with app.app_context():
protocol = Protocol.query.filter_by(id=protocol_id).first()
mail_text = render_template("remind-finishing-mail.txt",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment