From: Hampus Wessman Date: Sun, 12 Jun 2011 05:27:01 +0000 (+0200) Subject: Fix automatic rewrite starting too early. X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/0b17517c7c9f1f6b1c299346b7b4fa374e343fbc?ds=inline Fix automatic rewrite starting too early. Slight adjustment in growth calculation. --- diff --git a/src/redis.c b/src/redis.c index 33cef015..e7351b6e 100644 --- a/src/redis.c +++ b/src/redis.c @@ -699,7 +699,7 @@ int serverCron(struct aeEventLoop *eventLoop, long long id, void *clientData) { { int base = server.auto_aofrewrite_base_size ? server.auto_aofrewrite_base_size : 1; - long long growth = (server.appendonly_current_size*100/base); + long long growth = (server.appendonly_current_size*100/base) - 100; if (growth >= server.auto_aofrewrite_perc) { redisLog(REDIS_NOTICE,"Starting automatic rewriting of AOF on %lld%% growth",growth); rewriteAppendOnlyFileBackground();