From 335f82717e569ab9ce926ddedb9ce32a144bf3d2 Mon Sep 17 00:00:00 2001 From: Emile Sonneveld Date: Tue, 3 Sep 2024 09:55:06 +0200 Subject: [PATCH] Align message with https://github.com/Open-EO/openeo-api/pull/528 --- openeogeotrellis/layercatalog.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/openeogeotrellis/layercatalog.py b/openeogeotrellis/layercatalog.py index 5d53e7a1..6d68a23b 100644 --- a/openeogeotrellis/layercatalog.py +++ b/openeogeotrellis/layercatalog.py @@ -168,8 +168,9 @@ def load_collection(self, collection_id: str, load_params: LoadParameters, env: ) else: raise ProcessGraphComplexityException( - "Process graph contains nodes with a too large spatiotemporal extent and will likely time out. Disable this check with 'job_options.do_extent_check': " + - " ".join(issues)) + "The process graph is computationally too heavy and will likely time out. Disable this check with 'job_options.do_extent_check': " + + " ".join(issues) + ) return self._load_collection_cached(collection_id, load_params, WhiteListEvalEnv(env, WHITELIST))