-
Notifications
You must be signed in to change notification settings - Fork 663
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
More rebranding #606
More rebranding #606
Conversation
…nd error replies Signed-off-by: Viktor Söderqvist <[email protected]>
Signed-off-by: Viktor Söderqvist <[email protected]>
Signed-off-by: Viktor Söderqvist <[email protected]>
Signed-off-by: Viktor Söderqvist <[email protected]>
Signed-off-by: Viktor Söderqvist <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## unstable #606 +/- ##
=========================================
Coverage 70.24% 70.24%
=========================================
Files 110 110
Lines 59993 59993
=========================================
+ Hits 42140 42145 +5
+ Misses 17853 17848 -5
|
@@ -3081,7 +3081,7 @@ int rdbLoadRioWithLoadingCtx(rio *rdb, int rdbflags, rdbSaveInfo *rsi, rdbLoadin | |||
} else if (!strcasecmp(auxkey->ptr, "redis-ver")) { | |||
serverLog(LL_NOTICE, "Loading RDB produced by Redis version %s", (char *)auxval->ptr); |
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.
serverLog(LL_NOTICE, "Loading RDB produced by Redis version %s", (char *)auxval->ptr); | |
serverLog(LL_NOTICE, "Loading RDB produced by Valkey version %s", (char *)auxval->ptr); |
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.
Actually, this log entry is for the field "redis-ver", meaning we're loading an RDB file produced by Redis. We have another field "valkey-ver" too that's checked in the else-if below.
More rebranding of * Log messages (valkey-io#252) * The DENIED error reply * Internal function names and comments, mainly Lua API --------- Signed-off-by: Viktor Söderqvist <[email protected]> Signed-off-by: Adva Moshkovitz <[email protected]>
More rebranding of * Log messages (valkey-io#252) * The DENIED error reply * Internal function names and comments, mainly Lua API --------- Signed-off-by: Viktor Söderqvist <[email protected]>
More rebranding of