Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add retry filter for blob service #14609

Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tasks/AppCenterDistributeV3/azure-blob-upload-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class AzureBlobUploadHelper {

const connectionString = "BlobEndpoint=" + blobEndpoint + ";" + "SharedAccessSignature=" + sharedAccessSignature;

return new AzureStorage.BlobService(connectionString);
return new AzureStorage.BlobService(connectionString).withFilter(new AzureStorage.ExponentialRetryPolicyFilter());
anatolybolshakov marked this conversation as resolved.
Show resolved Hide resolved
}

private getContainerAndBlob(urlObject: Url.Url): [string, string] {
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AppCenterDistributeV3/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 3,
"Minor": 173,
"Minor": 186,
"Patch": 0
},
"releaseNotes": "Added support for forwarding Android mapping to App Center Diagnostics. Added missing descriptions.",
Expand Down
2 changes: 1 addition & 1 deletion Tasks/AppCenterDistributeV3/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 3,
"Minor": 173,
"Minor": 185,
EzzhevNikita marked this conversation as resolved.
Show resolved Hide resolved
"Patch": 0
},
"releaseNotes": "ms-resource:loc.releaseNotes",
Expand Down