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 755feac commit 911f556Copy full SHA for 911f556
openeogeotrellis/backend.py
@@ -2614,13 +2614,7 @@ def __repr__(self):
2614
partial_job_status = stac_object.get('openeo:status')
2615
logger_adapter.debug(f'load_stac({url}): "openeo:status" is "{partial_job_status}"')
2616
2617
- if partial_job_status == PARTIAL_JOB_STATUS.RUNNING:
2618
- if not supports_async_tasks:
2619
- raise OpenEOApiException(
2620
- message=f"this backend does not support loading unfinished results from {url}"
2621
- f" with load_stac",
2622
- status_code=501)
2623
-
+ if supports_async_tasks and partial_job_status == PARTIAL_JOB_STATUS.RUNNING:
2624
job_dependencies.append({
2625
'partial_job_results_url': url,
2626
})
0 commit comments