Skip to content

Commit

Permalink
WIP: Fix resample script uploading to wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
dmannarino committed Dec 1, 2024
1 parent 6ee4704 commit d5a28d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions batch/python/resample.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,8 +671,8 @@ def resample(
logger.log(logging.INFO, f"Finished generating geojsons")

logger.log(logging.INFO, f"Uploading geojsons to {target_prefix}")
upload_s3(tiles_output_file, bucket, os.path.join(target_prefix, tiles_output_file))
upload_s3(extent_output_file, bucket, os.path.join(target_prefix, extent_output_file))
upload_s3(tiles_output_file, bucket, os.path.join(target_prefix, "geotiff", tiles_output_file))
upload_s3(extent_output_file, bucket, os.path.join(target_prefix, "geotiff", extent_output_file))
logger.log(logging.INFO, f"Finished uploading geojsons to {target_prefix}")

log_queue.put_nowait(None)
Expand Down

0 comments on commit d5a28d9

Please sign in to comment.