]> git.saurik.com Git - redis.git/blobdiff - src/redis.c
Call all the helper functions needed by clientsCron() as clientsCronSomething() for...
[redis.git] / src / redis.c
index 5741bc90f5986d665281ff0eb2836d0467b5b1a3..f46f2376d7e53a181ec28a0cc3d1c906c300fac1 100644 (file)
@@ -641,7 +641,7 @@ long long getOperationsPerSecond(void) {
     return sum / REDIS_OPS_SEC_SAMPLES;
 }
 
-void closeTimedoutClient(redisClient *c) {
+void clientsCronHandleTimeout(redisClient *c) {
     time_t now = time(NULL);
 
     if (server.maxidletime &&
@@ -681,7 +681,7 @@ void clientsCron(void) {
         listRotate(server.clients);
         head = listFirst(server.clients);
         c = listNodeValue(head);
-        closeTimedoutClient(c);
+        clientsCronHandleTimeout(c);
     }
 }