-
Notifications
You must be signed in to change notification settings - Fork 142
Remove value policy from core #1917
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
Remove value policy from core #1917
Conversation
| namespace _internal { | ||
| /** | ||
| * @brief #Azure::Core::Http::Policies::_internal::ValuePolicy options. | ||
| */ | ||
| struct ValueOptions | ||
| { | ||
| CaseInsensitiveMap HeaderValues; | ||
| std::map<std::string, std::string> QueryValues; | ||
| }; | ||
|
|
||
| /** | ||
| * @brief Value policy. | ||
| * | ||
| * @details Applies key-value pair values to each HTTP request (either HTTP headers or query | ||
| * parameters). | ||
| */ | ||
| class ValuePolicy : public HttpPolicy { |
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.
FYI, this is the type of change we wouldn't (easily) be able to make post-GA. Even if we no longer have any users within the repo, if we GA'd a package that used it at some point, we'd have to keep such internal types around.
ahsonkhan
left a comment
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.
looks good. consider holding off on merging until tomorrow.
|
Looks similar to #1889 |
|
Don't merge breaking changes until storage release is done. |
…ve-value-policy-from-core
* Attempt to purge all vaults, managed HSMs Reverts #1910. Vaults and managed HSMs are automatically purged on their purge date. The point was to purge them daily to preserve capacity. The default purge date is +90 days. * Add timeout and more logging * Pass required -Resource * Fix log message * Ensure the $Resource is correctly captured Added comment to new code explaining why, since ScriptBlock.GetNewClosure() is not working as expected. * Add -ErrorAction to Receive-Job Worked without terminating when run locally, but failed on the first error in the AzDO agent. * Use $using:r instead of creating ScriptBlock More idiomatic for passing ScriptBlocks to jobs. * Resolve PR feedback * Change default DeleteAfterHours to 120 Resolves #1917 * Use the Az cmdlets built-in -AsJob Co-authored-by: Heath Stewart <[email protected]>
fixes: #1767
No changelog because the policy was Internal only