From 289b6b1e64a31300958c525ba037b2ca39938d2b Mon Sep 17 00:00:00 2001 From: Jeroen Dries Date: Wed, 11 Dec 2024 14:24:33 +0100 Subject: [PATCH] fix change in source id https://github.com/Open-EO/openeo-python-driver/issues/336 --- openeogeotrellis/backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openeogeotrellis/backend.py b/openeogeotrellis/backend.py index 2eb9a2ce..e9b056dc 100644 --- a/openeogeotrellis/backend.py +++ b/openeogeotrellis/backend.py @@ -2600,7 +2600,7 @@ def __repr__(self): card4l=card4l # should the batch job expect CARD4L metadata? )) elif process == 'load_stac': - url, _ = arguments # properties will be taken care of @ process graph evaluation time + url = arguments[0] # properties will be taken care of @ process graph evaluation time if url.startswith("http://") or url.startswith("https://"): dependency_job_info = load_stac.extract_own_job_info(url, user_id=user_id, batch_jobs=self)