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 82177e9 commit 21206bfCopy full SHA for 21206bf
cads_processing_api_service/clients.py
@@ -624,7 +624,9 @@ def get_job(
624
def get_job_results(
625
self,
626
job_id: str = fastapi.Path(..., description="Job identifier."),
627
- auth_info: models.AuthInfo = fastapi.Depends(auth.get_auth_info),
+ auth_info: models.AuthInfo = fastapi.Depends(
628
+ exceptions.exception_logger(auth.get_auth_info)
629
+ ),
630
) -> ogc_api_processes_fastapi.models.Results:
631
"""Implement OGC API - Processes `GET /jobs/{job_id}/results` endpoint.
632
0 commit comments