From e4cf2b6aa7f56b45890653c6366f37c2e24a9dee Mon Sep 17 00:00:00 2001 From: Stefano Alberto Russo <stefano.russo@gmail.com> Date: Mon, 22 Mar 2021 12:16:12 +0100 Subject: [PATCH] Improved mail notification message for a task starting up. --- services/webapp/code/rosetta/core_app/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/webapp/code/rosetta/core_app/api.py b/services/webapp/code/rosetta/core_app/api.py index 17a3fbb..f425191 100644 --- a/services/webapp/code/rosetta/core_app/api.py +++ b/services/webapp/code/rosetta/core_app/api.py @@ -312,8 +312,8 @@ print(port) # Notify the user that the task called back home logger.info('Sending task ready mail notification to "{}"'.format(task.user.email)) - mail_subject = 'Your Task "{}" is up and running'.format(task.container.name) - mail_text = 'Hello,\n\nyour Task "{}" on {} is up and running: {}/tasks/?uuid={}\n\nThe Rosetta notifications bot.'.format(task.container.name, task.computing, settings.DJANGO_PUBLIC_HTTP_HOST, task.uuid) + mail_subject = 'Your Task "{}" is now starting up'.format(task.container.name) + mail_text = 'Hello,\n\nyour Task "{}" on {} is now starting up. Check logs or connect here: {}/tasks/?uuid={}\n\nThe Rosetta notifications bot.'.format(task.container.name, task.computing, settings.DJANGO_PUBLIC_HTTP_HOST, task.uuid) try: send_email(to=task.user.email, subject=mail_subject, text=mail_text) except Exception as e: -- GitLab