You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This parameter is no longer used during the blob creation coming from package @azure/storage-blob however it can be passed in the constructor for BlobServiceClient as part of StoragePipelineOptions
The
requestTimeout
parameter of the IBlobStorageConfiguration has been removed. It used to be passed to the createBlockBlobFromText of theBlobService
from theazure-storage
package.This parameter is no longer used during the blob creation coming from package
@azure/storage-blob
however it can be passed in the constructor forBlobServiceClient
as part ofStoragePipelineOptions
constructor(url: string, credential?: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, options?: StoragePipelineOptions);
StoragePipelineOptions
has a fieldretryOptions
of typeStorageRetryOptions
which has thetryTimeoutInMs
field.We can add the timeout back in.
The text was updated successfully, but these errors were encountered: