Skip to content

Commit 5e5b210

Browse files
authored
Remove async prefix from new_process endpoint (#919)
* Remove async prefix from new_process endpoint * Bump version to 3.2.1
1 parent 7a40a60 commit 5e5b210

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.2.0
2+
current_version = 3.2.1
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<build>\d+))?

orchestrator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
"""This is the orchestrator workflow engine."""
1515

16-
__version__ = "3.2.0"
16+
__version__ = "3.2.1"
1717

1818
from orchestrator.app import OrchestratorCore
1919
from orchestrator.settings import app_settings

orchestrator/api/api_v1/endpoints/processes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ def delete(process_id: UUID) -> None:
128128
status_code=HTTPStatus.CREATED,
129129
dependencies=[Depends(check_global_lock, use_cache=False)],
130130
)
131-
async def new_process(
131+
def new_process(
132132
workflow_key: str,
133133
request: Request,
134134
json_data: list[dict[str, Any]] | None = Body(...),

0 commit comments

Comments
 (0)