Skip to content

Commit

Permalink
Added a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
shayanaijaz committed Aug 30, 2023
1 parent 9a00668 commit d87a5eb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions server/portal/apps/workspace/api/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ def get_tapis_timeout_error_messages(job_id):


def check_job_for_timeout(job):
"""
Check an interactive job for timeout status and mark it as finished
since Tapis does not have native support for interactive jobs yet
"""

if (hasattr(job, 'notes')):
notes = json.loads(job.notes)

Expand Down

0 comments on commit d87a5eb

Please sign in to comment.