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
5bfd8ae2
Unverified
Commit
5bfd8ae2
authored
Dec 07, 2018
by
Salvatore Sanfilippo
Committed by
GitHub
Dec 07, 2018
Browse files
Merge pull request #5626 from soloestoy/remove-useless-code
remove useless tryObjectEncoding in debug assert
parents
03629ba0
0da171b3
Changes
1
Show whitespace changes
Inline
Side-by-side
src/debug.c
View file @
5bfd8ae2
...
...
@@ -348,7 +348,6 @@ NULL
zfree
(
ptr
);
addReply
(
c
,
shared
.
ok
);
}
else
if
(
!
strcasecmp
(
c
->
argv
[
1
]
->
ptr
,
"assert"
))
{
if
(
c
->
argc
>=
3
)
c
->
argv
[
2
]
=
tryObjectEncoding
(
c
->
argv
[
2
]);
serverAssertWithInfo
(
c
,
c
->
argv
[
0
],
1
==
2
);
}
else
if
(
!
strcasecmp
(
c
->
argv
[
1
]
->
ptr
,
"log"
)
&&
c
->
argc
==
3
)
{
serverLog
(
LL_WARNING
,
"DEBUG LOG: %s"
,
(
char
*
)
c
->
argv
[
2
]
->
ptr
);
...
...
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