Skip to content

Commit

Permalink
Fix BlobstorageIO.checksum Attribute Error (#24442)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn authored Dec 1, 2022
1 parent 9915ec4 commit 8349ee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/io/azure/blobstorageio.py
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def checksum(self, path):
path: Azure Blob Storage file path pattern in the form
azfs://<storage-account>/<container>/[name].
"""
return self._blob_properties(path).properties.etag
return self._blob_properties(path).etag

def _status(self, path):
"""For internal use only; no backwards-compatibility guarantees.
Expand Down

0 comments on commit 8349ee6

Please sign in to comment.