fix(backend): Revert non-async routes that are changed to async (#8734)
parent
c14ab0c37a
commit
6954f4eb0e
|
@ -91,9 +91,7 @@ class AgentServer(backend.util.service.AppProcess):
|
||||||
async def test_execute_graph(
|
async def test_execute_graph(
|
||||||
graph_id: str, node_input: dict[typing.Any, typing.Any], user_id: str
|
graph_id: str, node_input: dict[typing.Any, typing.Any], user_id: str
|
||||||
):
|
):
|
||||||
return await backend.server.routers.v1.execute_graph(
|
return backend.server.routers.v1.execute_graph(graph_id, node_input, user_id)
|
||||||
graph_id, node_input, user_id
|
|
||||||
)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
async def test_create_graph(
|
async def test_create_graph(
|
||||||
|
|
|
@ -276,7 +276,7 @@ async def set_graph_active_version(
|
||||||
tags=["graphs"],
|
tags=["graphs"],
|
||||||
dependencies=[Depends(auth_middleware)],
|
dependencies=[Depends(auth_middleware)],
|
||||||
)
|
)
|
||||||
async def execute_graph(
|
def execute_graph(
|
||||||
graph_id: str,
|
graph_id: str,
|
||||||
node_input: dict[Any, Any],
|
node_input: dict[Any, Any],
|
||||||
user_id: Annotated[str, Depends(get_user_id)],
|
user_id: Annotated[str, Depends(get_user_id)],
|
||||||
|
@ -481,7 +481,7 @@ async def create_schedule(
|
||||||
tags=["schedules"],
|
tags=["schedules"],
|
||||||
dependencies=[Depends(auth_middleware)],
|
dependencies=[Depends(auth_middleware)],
|
||||||
)
|
)
|
||||||
async def delete_schedule(
|
def delete_schedule(
|
||||||
schedule_id: str,
|
schedule_id: str,
|
||||||
user_id: Annotated[str, Depends(get_user_id)],
|
user_id: Annotated[str, Depends(get_user_id)],
|
||||||
) -> dict[Any, Any]:
|
) -> dict[Any, Any]:
|
||||||
|
@ -494,7 +494,7 @@ async def delete_schedule(
|
||||||
tags=["schedules"],
|
tags=["schedules"],
|
||||||
dependencies=[Depends(auth_middleware)],
|
dependencies=[Depends(auth_middleware)],
|
||||||
)
|
)
|
||||||
async def get_execution_schedules(
|
def get_execution_schedules(
|
||||||
user_id: Annotated[str, Depends(get_user_id)],
|
user_id: Annotated[str, Depends(get_user_id)],
|
||||||
graph_id: str | None = None,
|
graph_id: str | None = None,
|
||||||
) -> list[scheduler.JobInfo]:
|
) -> list[scheduler.JobInfo]:
|
||||||
|
|
Loading…
Reference in New Issue