Skip to content

Commit 9f2f970

Browse files
committed
disable async_task by default
eu-cdse/openeo-cdse-infra#387
1 parent aed2678 commit 9f2f970

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ without compromising stable operations.
1818
- Experimental support for unified asset keys in job results STAC items by means of the "stac-version-experimental" job option ([#1111](https://github.com/Open-EO/openeo-geopyspark-driver/issues/1111), [Open-EO/openeo-geotrellis-extensions#402](https://github.com/Open-EO/openeo-geotrellis-extensions/issues/402))
1919
- Avoid workaround with EJR to obtain job results metadata in the context of a failover ([#1255](https://github.com/Open-EO/openeo-geopyspark-driver/issues/1255))
2020
- Avoid 413 "Payload Too Large" response from EJR upon job results metadata update ([#1200](https://github.com/Open-EO/openeo-geopyspark-driver/issues/1200))
21+
- Disable `async_task` by default ([eu-cdse/openeo-cdse-infra#387](https://github.com/eu-cdse/openeo-cdse-infra/issues/387))
2122

2223

2324
## 0.67.0

openeogeotrellis/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.68.0a2"
1+
__version__ = "0.68.0a3"

openeogeotrellis/config/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,6 @@ class GpsBackendConfig(OpenEoBackendConfig):
307307
freeipa_server: Optional[str] = os.environ.get("OPENEO_FREEIPA_SERVER", None)
308308
freeipa_default_credentials_info: Optional[dict] = None
309309

310-
supports_async_tasks: bool = not _is_kube_deploy
310+
supports_async_tasks: bool = False
311311

312312
read_results_metadata_file_retry_settings: dict = attrs.Factory(lambda: dict(tries=1)) # fail immediately

0 commit comments

Comments
 (0)