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
b1929bb2
Unverified
Commit
b1929bb2
authored
Feb 15, 2021
by
Yossi Gottlieb
Committed by
GitHub
Feb 15, 2021
Browse files
Fix incorrect shared ping length. (#8498)
parent
141ac8df
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server.c
View file @
b1929bb2
...
...
@@ -2599,7 +2599,7 @@ void createSharedObjects(void) {
shared
.
justid
=
createStringObject
(
"JUSTID"
,
6
);
shared
.
lastid
=
createStringObject
(
"LASTID"
,
6
);
shared
.
default_username
=
createStringObject
(
"default"
,
7
);
shared
.
ping
=
createStringObject
(
"ping"
,
7
);
shared
.
ping
=
createStringObject
(
"ping"
,
4
);
shared
.
setid
=
createStringObject
(
"SETID"
,
5
);
shared
.
keepttl
=
createStringObject
(
"KEEPTTL"
,
7
);
shared
.
load
=
createStringObject
(
"LOAD"
,
4
);
...
...
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