Commit e270a7fa authored by antirez's avatar antirez
Browse files

removed useless call

parent 3a21cb99
...@@ -587,8 +587,6 @@ void queueIOJob(iojob *j) { ...@@ -587,8 +587,6 @@ void queueIOJob(iojob *j) {
redisLog(REDIS_DEBUG,"Queued IO Job %p type %d about key '%s'\n", redisLog(REDIS_DEBUG,"Queued IO Job %p type %d about key '%s'\n",
(void*)j, j->type, (char*)j->key->ptr); (void*)j, j->type, (char*)j->key->ptr);
listAddNodeTail(server.io_newjobs,j); listAddNodeTail(server.io_newjobs,j);
if (server.io_active_threads < server.vm_max_threads)
spawnIOThread();
} }
/* Consume all the IO scheduled operations, and all the thread IO jobs /* Consume all the IO scheduled operations, and all the thread IO jobs
......
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