Skip to content

Commit b4d3cfa

Browse files
committed
Revert api route method rename to keep same openapi.json
1 parent 85a4c31 commit b4d3cfa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

services/api-server/openapi.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5641,9 +5641,9 @@
56415641
"tags": [
56425642
"function_jobs"
56435643
],
5644-
"summary": "Get Function Job Outputs",
5644+
"summary": "Function Job Outputs",
56455645
"description": "Get function job outputs\n\nNew in *version 0.8.0*",
5646-
"operationId": "get_function_job_outputs",
5646+
"operationId": "function_job_outputs",
56475647
"security": [
56485648
{
56495649
"HTTPBasic": []
@@ -5676,7 +5676,7 @@
56765676
"type": "null"
56775677
}
56785678
],
5679-
"title": "Response Get Function Job Outputs V0 Function Jobs Function Job Id Outputs Get"
5679+
"title": "Response Function Job Outputs V0 Function Jobs Function Job Id Outputs Get"
56805680
}
56815681
}
56825682
}

services/api-server/src/simcore_service_api_server/api/routes/function_jobs_routes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ async def get_function_from_functionjobid(
263263
changelog=CHANGE_LOGS["function_job_outputs"],
264264
),
265265
)
266-
async def get_function_job_outputs(
266+
async def function_job_outputs(
267267
function_job: Annotated[
268268
RegisteredFunctionJob, Depends(get_function_job_dependency)
269269
],

0 commit comments

Comments
 (0)