Fix incorrect shared ping length. (#8498)

This commit is contained in:
Yossi Gottlieb 2021-02-15 17:09:33 +02:00 committed by GitHub
parent 141ac8df59
commit b1929bb2b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2599,7 +2599,7 @@ void createSharedObjects(void) {
shared.justid = createStringObject("JUSTID",6); shared.justid = createStringObject("JUSTID",6);
shared.lastid = createStringObject("LASTID",6); shared.lastid = createStringObject("LASTID",6);
shared.default_username = createStringObject("default",7); shared.default_username = createStringObject("default",7);
shared.ping = createStringObject("ping",7); shared.ping = createStringObject("ping",4);
shared.setid = createStringObject("SETID",5); shared.setid = createStringObject("SETID",5);
shared.keepttl = createStringObject("KEEPTTL",7); shared.keepttl = createStringObject("KEEPTTL",7);
shared.load = createStringObject("LOAD",4); shared.load = createStringObject("LOAD",4);