test background close operation removed

This commit is contained in:
antirez 2011-09-13 16:57:18 +02:00
parent 22f1abd1f0
commit 77f6889356

View File

@ -709,7 +709,6 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) {
/* Run other sub-systems specific cron jobs */
if (server.cluster_enabled && !(loops % 10)) clusterCron();
if (!(loops % 10)) bioCreateBackgroundJob(REDIS_BIO_CLOSE_FILE,(void*)1000);
server.cronloops++;
return 100;
}