Skip to content

Commit

Permalink
try without cache
Browse files Browse the repository at this point in the history
  • Loading branch information
snbianco committed Sep 24, 2024
1 parent 99e8541 commit d75799f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions astrocut/footprint_cutouts.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def _get_s3_ffis(s3_uri, as_table: bool = False, load_polys: bool = False):
# Open footprint file with fsspec
# Use caching to help performance, but check that remote UID matches the local
# Expiry time is 1 week by default
with fsspec.open('filecache::' + s3_uri, s3={'anon': True},
filecache={'cache_storage': 's3_cache', 'check_files': True}) as f:
with fsspec.open('filecache::' + s3_uri, s3={'anon': True}) as f:
#filecache={'cache_storage': 's3_cache', 'check_files': True}) as f:
ffis = json.load(f)

if load_polys:
Expand Down

0 comments on commit d75799f

Please sign in to comment.