Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
630638dc
Commit
630638dc
authored
Sep 20, 2019
by
antirez
Browse files
Remove redundant statement in config.c.
Thanks to @guybe7 for spotting the error in the original PR I merged.
parent
0a146a8b
Changes
1
Show whitespace changes
Inline
Side-by-side
src/config.c
View file @
630638dc
...
@@ -671,8 +671,9 @@ void loadServerConfigFromString(char *config) {
...
@@ -671,8 +671,9 @@ void loadServerConfigFromString(char *config) {
} else if (!strcasecmp(argv[0],"lua-time-limit") && argc == 2) {
} else if (!strcasecmp(argv[0],"lua-time-limit") && argc == 2) {
server.lua_time_limit = strtoll(argv[1],NULL,10);
server.lua_time_limit = strtoll(argv[1],NULL,10);
} else if (!strcasecmp(argv[0],"lua-replicate-commands") && argc == 2) {
} else if (!strcasecmp(argv[0],"lua-replicate-commands") && argc == 2) {
server
.
lua_always_replicate_commands
=
yesnotoi
(
argv
[
1
]);
if ((server.lua_always_replicate_commands = yesnotoi(argv[1]))
if
((
server
.
lua_always_replicate_commands
=
yesnotoi
(
argv
[
1
]))
==
-
1
)
{
== -1)
{
err = "argument must be 'yes' or 'no'"; goto loaderr;
err = "argument must be 'yes' or 'no'"; goto loaderr;
}
}
} else if (!strcasecmp(argv[0],"slowlog-log-slower-than") &&
} else if (!strcasecmp(argv[0],"slowlog-log-slower-than") &&
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment