We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6885b2 commit d61ba00Copy full SHA for d61ba00
services/web/server/src/simcore_service_webserver/tasks/_rest.py
@@ -78,6 +78,7 @@ async def get_async_jobs(request: web.Request) -> web.Response:
78
[
79
TaskGet(
80
task_id=f"{job.job_id}",
81
+ task_name=job.job_name,
82
status_href=f"{request.url.with_path(str(request.app.router['get_async_job_status'].url_for(task_id=str(job.job_id))))}",
83
abort_href=f"{request.url.with_path(str(request.app.router['cancel_async_job'].url_for(task_id=str(job.job_id))))}",
84
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