Skip to content

Commit

Permalink
Restore sharing=False to rasterio open call.
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacemanPaul committed May 18, 2022
1 parent 3263d15 commit 43a66a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datacube/storage/_rio.py
Expand Up @@ -164,7 +164,7 @@ def open(self) -> Iterator[GeoRasterReader]:

try:
_LOG.debug("opening %s", self.filename)
with rasterio.open(str(self.filename)) as src:
with rasterio.open(str(self.filename), sharing=False) as src:
override = False

transform = src.transform
Expand Down

0 comments on commit 43a66a5

Please sign in to comment.