Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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':
Expand All @@ -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':
Expand Down