]> git.saurik.com Git - redis.git/commitdiff
Two small fixes to maxclients handling.
authorantirez <antirez@gmail.com>
Wed, 18 Apr 2012 09:31:24 +0000 (11:31 +0200)
committerantirez <antirez@gmail.com>
Wed, 18 Apr 2012 09:40:59 +0000 (11:40 +0200)
1) Don't accept maxclients set to < 0
2) Allow maxclients < 1024, it is useful for testing.

src/config.c
src/redis.c

index 4d35521d742b4f5fd18407aed0caa60c168a4cec..c2ea5b76816c0fcb278e5bb2572e2f6a0c4a9acb 100644 (file)
@@ -155,6 +155,9 @@ void loadServerConfigFromString(char *config) {
             loadServerConfig(argv[1],NULL);
         } else if (!strcasecmp(argv[0],"maxclients") && argc == 2) {
             server.maxclients = atoi(argv[1]);
+            if (server.maxclients < 1) {
+                err = "Invalid max clients limit"; goto loaderr;
+            }
         } else if (!strcasecmp(argv[0],"maxmemory") && argc == 2) {
             server.maxmemory = memtoll(argv[1],NULL);
         } else if (!strcasecmp(argv[0],"maxmemory-policy") && argc == 2) {
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));