Skip to content

Commit 765e913

Browse files
committed
remove deprecated post processes/.../execute enddpoint
1 parent ae0f149 commit 765e913

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

ogc_api_processes_fastapi/config.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,6 @@ class RouteConfig(BaseModel):
3535
methods=["GET"],
3636
client_method="get_process",
3737
),
38-
"PostProcessExecute": RouteConfig(
39-
path="/processes/{process_id}/execute",
40-
summary="Execution of a process",
41-
methods=["POST"],
42-
status_code=201,
43-
client_method="post_process_execution",
44-
deprecated=True,
45-
),
4638
"PostProcessExecution": RouteConfig(
4739
path="/processes/{process_id}/execution",
4840
summary="Execution of a process",

ogc_api_processes_fastapi/endpoints.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,6 @@ def delete_job(
322322
"GetJob": create_get_job_endpoint,
323323
"GetJobResults": create_get_job_results_endpoint,
324324
"DeleteJob": create_delete_job_endpoint,
325-
"PostProcessExecute": create_post_process_execution_endpoint,
326325
}
327326

328327

0 commit comments

Comments
 (0)