Skip to content

Commit

Permalink
feat: Initial autogenerated FastAPI implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
Drew Meyers committed Sep 3, 2024
1 parent 97c0737 commit f3a8011
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app-cp/src/openapi_server/impl/processes_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

from openapi_server.config.config import Settings
from openapi_server.database import crud
from openapi_server.impl.dru_api import check_process_integrity
from openapi_server.utils.redis import RedisLock
from unity_sps_ogc_processes_api.apis.processes_api_base import BaseProcessesApi
from unity_sps_ogc_processes_api.models.execute200_response import Execute200Response
Expand Down Expand Up @@ -58,7 +59,7 @@ def execute(
response: str,
prefer: str,
) -> Execute200Response:
self.check_process_integrity(processId, new_process=False)
check_process_integrity(processId, new_process=False)

job_id = str(uuid.uuid4())
logical_date = datetime.now().strftime("%Y-%m-%dT%H:%M:%S.%fZ")
Expand Down

0 comments on commit f3a8011

Please sign in to comment.