Skip to content

Commit

Permalink
Cherry Pick and prep from release (#382)
Browse files Browse the repository at this point in the history
* Add retryPolicy on creating services
(blob/queue/fileshare/table)

* Prep for release
  • Loading branch information
PrashanthCorp authored Jul 24, 2019
1 parent 80b7ed4 commit 5c6a824
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to the "vscode-azurestorage" extension will be documented in this file.

## 0.7.1 - 2019-07-01
### Fixed
- Deployment of large static websites lead to timeout errors
[#352](https://github.com/Microsoft/vscode-azurestorage/issues/352), [#345](https://github.com/Microsoft/vscode-azurestorage/issues/345), [#370](https://github.com/Microsoft/vscode-azurestorage/issues/370), , [#334](https://github.com/Microsoft/vscode-azurestorage/issues/334), [#340](https://github.com/Microsoft/vscode-azurestorage/issues/340), [#338](https://github.com/Microsoft/vscode-azurestorage/issues/338), [#339](https://github.com/Microsoft/vscode-azurestorage/issues/339), [#342](https://github.com/Microsoft/vscode-azurestorage/issues/342), [#317](https://github.com/Microsoft/vscode-azurestorage/issues/317), [#362](https://github.com/Microsoft/vscode-azurestorage/issues/362)

## 0.7.0 - 2019-02-19
### Fixed
- Improved installation and start-up performance
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-azurestorage",
"displayName": "Azure Storage",
"description": "Manage your Azure Storage accounts including Blob Containers, File Shares, Tables and Queues",
"version": "0.7.0",
"version": "0.7.1",
"publisher": "ms-azuretools",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,17 +154,17 @@ export class StorageAccountTreeItem extends AzureParentTreeItem<IStorageRoot> {
return Object.assign({}, subRoot, {
storageAccount: this.storageAccount,
createBlobService: () => {
return azureStorage.createBlobService(this.storageAccount.name, this.key.value, this.storageAccount.primaryEndpoints.blob);
return azureStorage.createBlobService(this.storageAccount.name, this.key.value, this.storageAccount.primaryEndpoints.blob).withFilter(new azureStorage.ExponentialRetryPolicyFilter());
},
createFileService: () => {
return azureStorage.createFileService(this.storageAccount.name, this.key.value, this.storageAccount.primaryEndpoints.file);
return azureStorage.createFileService(this.storageAccount.name, this.key.value, this.storageAccount.primaryEndpoints.file).withFilter(new azureStorage.ExponentialRetryPolicyFilter());
},
createQueueService: () => {
return azureStorage.createQueueService(this.storageAccount.name, this.key.value, this.storageAccount.primaryEndpoints.queue);
return azureStorage.createQueueService(this.storageAccount.name, this.key.value, this.storageAccount.primaryEndpoints.queue).withFilter(new azureStorage.ExponentialRetryPolicyFilter());
},
createTableService: () => {
// tslint:disable-next-line:no-any the typings for createTableService are incorrect
return azureStorage.createTableService(this.storageAccount.name, this.key.value, <any>this.storageAccount.primaryEndpoints.table);
return azureStorage.createTableService(this.storageAccount.name, this.key.value, <any>this.storageAccount.primaryEndpoints.table).withFilter(new azureStorage.ExponentialRetryPolicyFilter());
}
});
}
Expand Down

0 comments on commit 5c6a824

Please sign in to comment.