From 8b1bc44cfcecc9e045ead700435ce601881dfe86 Mon Sep 17 00:00:00 2001 From: Bhummanat Sittipongpittaya Date: Fri, 29 May 2026 13:30:16 -0400 Subject: [PATCH] Fix result URL in email notifications (utils.py) Changed from bartweb.org to bartweb.pods.uvarc.io --- utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils.py b/utils.py index 7386a27..c9b995f 100755 --- a/utils.py +++ b/utils.py @@ -74,7 +74,7 @@ def send_email(user_mail, user_key, email_type): Here is your key: {} When the job is done, you can ge the results through this link:\n {} -'''.format(user_key, 'http://bartweb.org/result?user_key='+user_key) +'''.format(user_key, 'https://bartweb.pods.uvarc.io/result?user_key=' + user_key) # changed hard-coded URL ('http://bartweb.org/result?user_key='+user_key) 260529_Bhummanat # === when job finishes successfully if email_type == 'Done': @@ -83,7 +83,7 @@ def send_email(user_mail, user_key, email_type): Congratulations! Your BART job is done! Please get the results through this link: {} -'''.format('http://bartweb.org/result?user_key='+user_key) +'''.format('https://bartweb.pods.uvarc.io/result?user_key=' + user_key) # changed hard-coded URL ('http://bartweb.org/result?user_key='+user_key) 260529_Bhummanat # === when job finishes with an error if email_type == 'Error':