Commit 421582f8 authored by antirez's avatar antirez
Browse files

checkTcpBacklogSetting() now called in Sentinel mode too.

parent 3cfca5af
...@@ -3660,6 +3660,7 @@ int main(int argc, char **argv) { ...@@ -3660,6 +3660,7 @@ int main(int argc, char **argv) {
if (server.daemonize) createPidFile(); if (server.daemonize) createPidFile();
redisSetProcTitle(argv[0]); redisSetProcTitle(argv[0]);
redisAsciiArt(); redisAsciiArt();
checkTcpBacklogSettings();
if (!server.sentinel_mode) { if (!server.sentinel_mode) {
/* Things not needed when running in Sentinel mode. */ /* Things not needed when running in Sentinel mode. */
...@@ -3667,7 +3668,6 @@ int main(int argc, char **argv) { ...@@ -3667,7 +3668,6 @@ int main(int argc, char **argv) {
#ifdef __linux__ #ifdef __linux__
linuxMemoryWarnings(); linuxMemoryWarnings();
#endif #endif
checkTcpBacklogSettings();
loadDataFromDisk(); loadDataFromDisk();
if (server.cluster_enabled) { if (server.cluster_enabled) {
if (verifyClusterConfigWithData() == REDIS_ERR) { if (verifyClusterConfigWithData() == REDIS_ERR) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment