Skip to content

[Storage] StorageManagementClient.storage_task_assignments.begin_create(...) fail with date-time format not aligned with server request. #37406

Open

Description

Describe the bug
An external customer recently tried to use the Python SDK to create Task assignments and they are running into validation errors and Task assignment creation is not accepted.

This is because they tried to pass in date times with and without padding on "2024-09-22T19:50:32" format, which the Python SDK always Serializes converts to UTC: "2024-09-22T19:50:32.000Z" which looks to be not accepted by backend.

That is, upon calling this:

StorageManagementClient.storage_task_assignments.begin_create(...)

A log line is shown:
"Datetime with no tzinfo will be considered UTC."

Customer also shared the root cause might be because the default serializer used converts to the format:

>>> from azure.mgmt.storage._serialization import Serializer
>>> Serializer.serialize_iso("2024-09-22T19:50:32")
Datetime with no tzinfo will be considered UTC.
'2024-09-22T19:50:32.000Z'

Options:
Can SDK be updated to sync with what SRP/infra accepts? Possibly update the parameters passed to Serializer?

To Reproduce
Steps to reproduce the behavior:
see above comment.

Expected behavior
The datetime send from python SDK can be accepted by Server.

Screenshots
If applicable, add screenshots to help explain your problem.

Additional context
Add any other context about the problem here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

Labels

MgmtThis issue is related to a management-plane library.Service AttentionWorkflow: This issue is responsible by Azure service team.StorageStorage Service (Queues, Blobs, Files)needs-team-attentionWorkflow: This issue needs attention from Azure service team or SDK team

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions