Skip to content

Commit

Permalink
Enable gdalinfo_from_file by default. #948
Browse files Browse the repository at this point in the history
  • Loading branch information
EmileSonneveld committed Jan 6, 2025
1 parent 70a70eb commit c0a949a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions openeogeotrellis/config/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,9 @@ class GpsBackendConfig(OpenEoBackendConfig):
"/opt/tensorflow:/opt/tensorflow:ro"
)
batch_user_docker_mounts: dict[str, List[str]] = {}
gdalinfo_from_file: bool = False
gdalinfo_from_file: bool = True
gdalinfo_python_call: bool = False
gdalinfo_use_subprocess: bool = True # TODO: Only keep one gdalinfo on true
gdalinfo_use_subprocess: bool = False
gdalinfo_use_python_subprocess: bool = False

# TODO: replace these temp default with None (or better defaults)
Expand All @@ -257,7 +257,7 @@ class GpsBackendConfig(OpenEoBackendConfig):
calrissian_bucket: Optional[str] = "calrissian"

"""
Inject S3 profiles and tokens that allow S3 access scoped to the Job execution.
Inject S3 profiles and tokens that allow S3 access scoped to the Job execution.
"""
provide_s3_profiles_and_tokens: bool = False

Expand All @@ -269,4 +269,4 @@ class GpsBackendConfig(OpenEoBackendConfig):
"""
Directory where config specific to job execution will be mounted for batch jobs.
"""
batch_job_config_dir: Path = Path("/opt/job_config")
batch_job_config_dir: Path = Path("/opt/job_config")

0 comments on commit c0a949a

Please sign in to comment.