diff --git a/src/redis.c b/src/redis.c index 6beabfce..31b04e99 100644 --- a/src/redis.c +++ b/src/redis.c @@ -29,6 +29,7 @@ #include "redis.h" #include "slowlog.h" +#include "bio.h" #ifdef HAVE_BACKTRACE #include @@ -964,6 +965,7 @@ void initServer() { if (server.vm_enabled) vmInit(); slowlogInit(); + bioInit(); srand(time(NULL)^getpid()); }