-
Notifications
You must be signed in to change notification settings - Fork 517
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
Update error message and add the ERR error code #1597
Conversation
We now have some error messages that do not return an ERR error code: ``` 127.0.0.1:6666> cluster nodes Cluster mode is not enabled ``` As far as i know this doesn't affect the client libs, and doesn't affect the users. But I think it's right to add the error code. Note that Redis will actually count error messages and standardize the error codes, like: ``` 127.0.0.1:6379> info Errorstats # Errorstats errorstat_ERR:count=2 errorstat_EXECABORT:count=1 errorstat_WRONGTYPE:count=1 ``` We mixed using the status message and error output in some places, this PR checks all redis::Error calls and use error status to replace it. (Only the ERR case is handled, others are not handled yet.)
It's not a direct objective of this PR, but I'd like to have the |
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.
Generally LGTM.
@torwig thanks for the review. agree, that is a good suggestion. |
We now have some error messages that do not return an ERR error code: ``` 127.0.0.1:6666> cluster nodes Cluster mode is not enabled ``` As far as i know this doesn't affect the client libs, and doesn't affect the users. But I think it's right to add the error code. Note that Redis will actually count error messages and standardize the error codes, like: ``` 127.0.0.1:6379> info Errorstats # Errorstats errorstat_ERR:count=2 errorstat_EXECABORT:count=1 errorstat_WRONGTYPE:count=1 ``` We mixed using the status message and error output in some places, this PR checks all redis::Error calls and use error status to replace it. (Only the ERR case is handled, others are not handled yet.) We like to have the "ERR" + some_error_message construction only in one place as an implementation detail of the Redis protocol. Maybe, inside redis::Error or so. We will leave it for a future PR as a cleanup. (pull out the error code and error message)
We now have some error messages that do not return
an ERR error code:
As far as i know this doesn't affect the client libs,
and doesn't affect the users. But I think it's right
to add the error code.
Note that Redis will actually count error messages and
standardize the error codes, like:
We mixed using the status message and error output in
some places, this PR checks all redis::Error calls and
use error status to replace it. (Only the ERR case is
handled, others are not handled yet.)
We like to have the "ERR" + some_error_message construction
only in one place as an implementation detail of the Redis
protocol. Maybe, inside redis::Error or so.
We will leave it for a future PR as a cleanup. (pull out
the error code and error message)