Spaces:
Sleeping
Sleeping
Minor bug fixes
Browse files- app/main.py +1 -1
app/main.py
CHANGED
@@ -105,7 +105,7 @@ def query_job_status(job_id):
|
|
105 |
if job: # If the job exists
|
106 |
if job['status'] == "RUNNING":
|
107 |
stop = False
|
108 |
-
msg = f
|
109 |
msg += ('It might take a few minutes to a few hours depending on the input size and the queue status. '
|
110 |
'You may keep the page open or close it and revisit later using the job ID. '
|
111 |
'You will receive an email notification once the job is done.')
|
|
|
105 |
if job: # If the job exists
|
106 |
if job['status'] == "RUNNING":
|
107 |
stop = False
|
108 |
+
msg = f"Your job (ID: **{job['id']}**) started at **{job['start_time']}** and is **RUNNING...**"
|
109 |
msg += ('It might take a few minutes to a few hours depending on the input size and the queue status. '
|
110 |
'You may keep the page open or close it and revisit later using the job ID. '
|
111 |
'You will receive an email notification once the job is done.')
|