Skip to content

Commit 5a31979

Browse files
committed
fix broken execute_batch test
1 parent ee795b6 commit 5a31979

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

openeo/rest/imagecollectionclient.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -982,8 +982,11 @@ def execute_batch(
982982
983983
"""
984984
from openeo.rest.job import RESTJob
985-
job = self.send_job(out_format,job_options=job_options, **format_options)
986-
return RESTJob.run_synchronous(job,outputfile,print=print, max_poll_interval=60, connection_retry_interval=30)
985+
job = self.send_job(out_format, job_options=job_options, **format_options)
986+
return RESTJob.run_synchronous(
987+
job, outputfile,
988+
print=print, max_poll_interval=max_poll_interval, connection_retry_interval=connection_retry_interval
989+
)
987990

988991
def send_job(self, out_format=None, job_options=None, **format_options) -> Job:
989992
"""

0 commit comments

Comments
 (0)