[BUG] GetPropertiesAsync fails in Firefox with TypeError: e.body is null #47865
Labels
Client
This issue points to a problem in the data-plane of the library.
customer-reported
Issues that are reported by GitHub users external to the Azure organization.
needs-team-attention
Workflow: This issue needs attention from Azure service team or SDK team
question
The issue doesn't require a change to the product in order to be resolved. Most issues start as that
Service Attention
Workflow: This issue is responsible by Azure service team.
Storage
Storage Service (Queues, Blobs, Files)
Library name and version
Azure.Storage.Blobs, Version=12.22.2.0
Describe the bug
From a Blazor Client side project, when I call the following:
var props = await blobClient.GetPropertiesAsync();
Firefox fails with the following error:
TypeError: e.body is null
Other browsers work as expected and I can see the properties for my blob.
Expected behavior
The properties for the blob are returned to be use as needed.
Actual behavior
In Firefox, an exception is generated with the error message :
TypeError: e.body is null
Reproduction Steps
'
public async Task UploadStream(string blobName, Stream stream, Uri sasTokenUri, long totalSize)
{
var containerClient = new BlobContainerClient(sasTokenUri);
}
'
Environment
Blazor App running in an Azure App Service using .net 8.0
Version 8.0.405
Visual Studio 2022 17.12.3
The text was updated successfully, but these errors were encountered: