From 66b5afdaa4bf53b66e4d09fe6c3ebbfff283d1c4 Mon Sep 17 00:00:00 2001 From: antirez Date: Mon, 27 Aug 2018 12:17:14 +0200 Subject: [PATCH] Re-apply rebased #2358. --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 7bd9592b..b15cb6d7 100644 --- a/src/config.c +++ b/src/config.c @@ -1181,7 +1181,7 @@ void configSetCommand(client *c) { } config_set_memory_field("maxmemory",server.maxmemory) { if (server.maxmemory) { if (server.maxmemory < zmalloc_used_memory()) { - serverLog(LL_WARNING,"WARNING: the new maxmemory value set via CONFIG SET is smaller than the current memory usage. This will result in keys eviction and/or inability to accept new write commands depending on the maxmemory-policy."); + serverLog(LL_WARNING,"WARNING: the new maxmemory value set via CONFIG SET is smaller than the current memory usage. This will result in key eviction and/or the inability to accept new write commands depending on the maxmemory-policy."); } freeMemoryIfNeeded(); }