Azure / Azure/azure-storage-python
Include millisecond component (%f) in datetime serialization
Open
- Dominant language
- Python
- Stars
- 343
- Forks
- 243
- PR merge metrics
- No merged PRs in 30d
Description
https://github.com/Azure/azure-storage-python/blob/4306898850dd21617644fc537a57d025e833db74/azure-storage-common/azure/storage/common/_serialization.py#L46
Milliseconds are being stripped from datetime values when serializing:
return value.strftime('%Y-%m-%dT%H:%M:%SZ')
-->
return value.strftime('%Y-%m-%dT%H:%M:%S.%fZ')
Contributor guide
Assessment
This issue has not been assessed yet.