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 91eba98 commit f81d8b7Copy full SHA for f81d8b7
services/api-server/src/simcore_service_api_server/api/routes/function_jobs_routes.py
@@ -306,8 +306,14 @@ async def function_job_outputs(
306
"/{function_job_id:uuid}/log",
307
response_model=TaskGet,
308
responses={**_COMMON_FUNCTION_JOB_ERROR_RESPONSES},
309
+ description=create_route_description(
310
+ base="Get function job logs task",
311
+ changelog=[
312
+ FMSG_CHANGELOG_NEW_IN_VERSION.format("0.10-rc1"),
313
+ ],
314
+ ),
315
)
-async def start_function_job_logs(
316
+async def get_function_job_logs_task(
317
function_job_id: FunctionJobID,
318
app: Annotated[FastAPI, Depends(get_app)],
319
job_service: Annotated[JobService, Depends(get_job_service)],
0 commit comments