Skip to content

Commit eb72cfa

Browse files
committed
fix: result link for batch job
1 parent eacd416 commit eb72cfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/platforms/implementations/openeo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def get_job_result_url(self, job_id: str, details: ServiceDetails) -> str:
206206
logger.debug(f"Fetching job result for openEO job with ID {job_id}")
207207
connection = self._setup_connection(details.endpoint)
208208
job = connection.job(job_id)
209-
return f"{details.endpoint}{job.get_results_metadata_url()}"
209+
return job.get_results_metadata_url(full=True)
210210
except Exception as e:
211211
logger.exception(
212212
f"Failed to fetch result url for for openEO job with ID {job_id}"

0 commit comments

Comments
 (0)