From 8513a757abb1edf9e85f368df9072b22218defe3 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 20 May 2010 12:53:26 +0200 Subject: [PATCH] minor change to shutdown --- redis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis.c b/redis.c index 721a91252..d6c6cbdf2 100644 --- a/redis.c +++ b/redis.c @@ -4180,7 +4180,6 @@ static int prepareForShutdown() { if (server.daemonize) unlink(server.pidfile); redisLog(REDIS_WARNING,"%zu bytes used at exit",zmalloc_used_memory()); - redisLog(REDIS_WARNING,"Server exit now, bye bye..."); } else { /* Ooops.. error saving! The best we can do is to continue * operating. Note that if there was a background saving process, @@ -4191,6 +4190,7 @@ static int prepareForShutdown() { return REDIS_ERR; } } + redisLog(REDIS_WARNING,"Server exit now, bye bye..."); return REDIS_OK; }