Skip to content

Commit d61ba00

Browse files
author
Andrei Neagu
committed
fixed broken job name
1 parent d6885b2 commit d61ba00

File tree

1 file changed

+1
-0
lines changed
  • services/web/server/src/simcore_service_webserver/tasks

1 file changed

+1
-0
lines changed

services/web/server/src/simcore_service_webserver/tasks/_rest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ async def get_async_jobs(request: web.Request) -> web.Response:
7878
[
7979
TaskGet(
8080
task_id=f"{job.job_id}",
81+
task_name=job.job_name,
8182
status_href=f"{request.url.with_path(str(request.app.router['get_async_job_status'].url_for(task_id=str(job.job_id))))}",
8283
abort_href=f"{request.url.with_path(str(request.app.router['cancel_async_job'].url_for(task_id=str(job.job_id))))}",
8384
result_href=f"{request.url.with_path(str(request.app.router['get_async_job_result'].url_for(task_id=str(job.job_id))))}",

0 commit comments

Comments
 (0)