creste opened a new issue, #24440:
URL: https://github.com/apache/beam/issues/24440

   ### What happened?
   
   `BlobStorageIO.checksum()` has this line of code:
   
https://github.com/apache/beam/blob/9915ec466b217dc79ae47d0d318f73ad174da626/sdks/python/apache_beam/io/azure/blobstorageio.py#L378
   
   Which fails with this error:
   >AttributeError: 'BlobProperties' object has no attribute 'properties'
   
   Because the 
[BlobProperties](https://learn.microsoft.com/en-us/python/api/azure-storage-blob/azure.storage.blob.blobproperties?view=azure-python)
 class does not have a `properties` attribute.
   
   This fixes the problem:
   ```python
   return self._blob_properties(path).etag
   ```
   
   ### Issue Priority
   
   Priority: 1
   
   ### Issue Component
   
   Component: io-py-ideas


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to