-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allow more control of filtering Reply errors (#61)
The `Reply.Err()` and `RPCErrors.Filter()` are useful functions to get the `SevError` level errors out, but some people may want to treat `SevWarning` as errors as well and doing it manually is a pain. As not to add a bunch of alternative functions like `RPCError.FilterWarn`, `Reply.ErrWarn()` and `Reply.ErrAll()` this updates `Filter` and `Err` to take in a list of desired severity levels. If they are missing they go back to defaulting to `SevError` which is a sane default. ## Breaking change: The API for `reply.Err()` and `RPCErrors.Filter()` were changed as above. For most call sites this should be fine but anyone using this function in a interface or explicitly using it as a type will break. `ErrSevError` was renamed to `SevError` `ErrSevWarning` was reanmed to `SevWarning` As the API is not yet stable these changes are ok and will become stabilized after 1.0.0
- Loading branch information
Showing
4 changed files
with
45 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters