-
Notifications
You must be signed in to change notification settings - Fork 253
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
Migrate security_keyvault to new azure_core::error scheme #782
Migrate security_keyvault to new azure_core::error scheme #782
Conversation
@rylev, @cataggar Please could you review, as this is the first of these conversions that I've done. Notes on the process, to help other crate migrations:
Fixing up errorsExisting error types need to be replaced with the new
I found
Example replacements: Using
Using
Directly constructing errors:
|
Aside... I noticed that there are a large number of Example:
Thoughts? |
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.
Looking good. Can you review #781? It has a change that will help improve this PR.
0b241d5
to
0025186
Compare
Part of the mission to migrate crates to the new error scheme:
#771