-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[storage] Storage policy renames #5862
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ramya-rao-a 's additions look good to me.
* @implements {RequestPolicyFactory} | ||
*/ | ||
export class RetryPolicyFactory implements RequestPolicyFactory { | ||
private retryOptions?: RetryOptions; | ||
export class StorageRetryPolicyFactory implements RequestPolicyFactory { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
StorageRetryPolicyFactory [](start = 13, length = 25)
Rename the file name too. Like RetryPolicyFactory.ts => StorageRetryPolicyFactory.ts
We have practices to align the file name with the class name in it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@XiaoningLiu The policy files have been renamed too. Please take another look
FWIW rebasing this will make the api report more accurate. Might be good to double-check that before merging. |
/azp run js - storage-blob - tests |
/azp run js - storage-queue - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
1 similar comment
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run js - storage-file - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
/azp run js - storage-file - tests |
Azure Pipelines successfully started running 1 pipeline(s). |
Renames the storage exported policy factories and related symbols with the
Storage
prefix.