Skip to content

Commit b3d9697

Browse files
committed
rm deprecation
1 parent 9d229f2 commit b3d9697

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

services/api-server/openapi.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1994,7 +1994,7 @@
19941994
"solvers"
19951995
],
19961996
"summary": "List Jobs",
1997-
"description": "List of jobs in a specific released solver (limited to 20 jobs)\n\nSEE `get_jobs_page` for paginated version of this function\nNOTE: This implementation and returned values are deprecated and the\n will be replaced by that of get_jobs_page",
1997+
"description": "List of jobs in a specific released solver (limited to 20 jobs)\n\n- DEPRECATION: This implementation and returned values are deprecated and the will be replaced by that of get_jobs_page\n- SEE `get_jobs_page` for paginated version of this function",
19981998
"operationId": "list_jobs",
19991999
"parameters": [
20002000
{
@@ -2114,7 +2114,6 @@
21142114
}
21152115
}
21162116
},
2117-
"deprecated": true,
21182117
"security": [
21192118
{
21202119
"HTTPBasic": []

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@
116116
"/{solver_key:path}/releases/{version}/jobs",
117117
response_model=list[Job],
118118
responses=JOBS_STATUS_CODES,
119-
deprecated=True,
120119
)
121120
async def list_jobs(
122121
solver_key: SolverKeyId,
@@ -129,9 +128,8 @@ async def list_jobs(
129128
):
130129
"""List of jobs in a specific released solver (limited to 20 jobs)
131130
132-
SEE `get_jobs_page` for paginated version of this function
133-
NOTE: This implementation and returned values are deprecated and the
134-
will be replaced by that of get_jobs_page
131+
- DEPRECATION: This implementation and returned values are deprecated and the will be replaced by that of get_jobs_page
132+
- SEE `get_jobs_page` for paginated version of this function
135133
"""
136134

137135
solver = await catalog_client.get_service(

0 commit comments

Comments
 (0)