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 c74830b commit 495a403Copy full SHA for 495a403
api/specs/web-server/_long_running_tasks_legacy.py
@@ -23,7 +23,7 @@
23
@router.get(
24
"",
25
response_model=Envelope[list[TaskGet]],
26
- name="list_tasks",
+ name="list_legacy_tasks",
27
description="Lists all long running tasks",
28
)
29
async def list_tasks(): ...
@@ -32,7 +32,7 @@ async def list_tasks(): ...
32
33
"/{task_id}",
34
response_model=Envelope[TaskStatus],
35
- name="get_task_status",
+ name="get_legacy_task_status",
36
description="Retrieves the status of a task",
37
38
async def get_task_status(
@@ -42,7 +42,7 @@ async def get_task_status(
42
43
@router.delete(
44
45
- name="remove_task",
+ name="remove_legacy_task",
46
description="Cancels and removes a task",
47
status_code=status.HTTP_204_NO_CONTENT,
48
@@ -53,7 +53,7 @@ async def remove_task(
53
54
55
"/{task_id}/result",
56
- name="get_task_result",
+ name="get_legacy_task_result",
57
response_model=Any,
58
description="Retrieves the result of a task",
59
0 commit comments