Skip to content

Commit

Permalink
rm deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Oct 3, 2024
1 parent a5c2c5b commit dea1cd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions services/api-server/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1994,7 +1994,7 @@
"solvers"
],
"summary": "List Jobs",
"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",
"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",
"operationId": "list_jobs",
"parameters": [
{
Expand Down Expand Up @@ -2114,7 +2114,6 @@
}
}
},
"deprecated": true,
"security": [
{
"HTTPBasic": []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,6 @@
"/{solver_key:path}/releases/{version}/jobs",
response_model=list[Job],
responses=JOBS_STATUS_CODES,
deprecated=True,
)
async def list_jobs(
solver_key: SolverKeyId,
Expand All @@ -129,9 +128,8 @@ async def list_jobs(
):
"""List of jobs in a specific released solver (limited to 20 jobs)
SEE `get_jobs_page` for paginated version of this function
NOTE: This implementation and returned values are deprecated and the
will be replaced by that of get_jobs_page
- DEPRECATION: This implementation and returned values are deprecated and the will be replaced by that of get_jobs_page
- SEE `get_jobs_page` for paginated version of this function
"""

solver = await catalog_client.get_service(
Expand Down

0 comments on commit dea1cd8

Please sign in to comment.