]> git.saurik.com Git - redis.git/blobdiff - src/redis.c
Two small fixes to maxclients handling.
[redis.git] / src / redis.c
index 86cf0d957e71992f67110f30e6b8d15118cde82b..46ae3ffa6a97ba01784cd31509af4fda3fb6b0d5 100644 (file)
@@ -1135,7 +1135,6 @@ void adjustOpenFilesLimit(void) {
     rlim_t maxfiles = server.maxclients+32;
     struct rlimit limit;
 
-    if (maxfiles < 1024) maxfiles = 1024;
     if (getrlimit(RLIMIT_NOFILE,&limit) == -1) {
         redisLog(REDIS_WARNING,"Unable to obtain the current NOFILE limit (%s), assuming 1024 and setting the max clients configuration accordingly.",
             strerror(errno));