From 6b696e6b619334779f23ffb7ac150e5171340a2f Mon Sep 17 00:00:00 2001 From: Matt Robenolt Date: Mon, 14 Aug 2017 14:50:47 -0700 Subject: [PATCH] Fix typo in LATENCY DOCTOR output --- src/latency.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latency.c b/src/latency.c index 9e9f1f13a973..19cee854701d 100644 --- a/src/latency.c +++ b/src/latency.c @@ -415,7 +415,7 @@ sds createLatencyReport(void) { if (advise_scheduler) { report = sdscat(report,"- The system is slow to execute Redis code paths not containing system calls. This usually means the system does not provide Redis CPU time to run for long periods. You should try to:\n" " 1) Lower the system load.\n" - " 2) Use a computer / VM just for Redis if you are running other softawre in the same system.\n" + " 2) Use a computer / VM just for Redis if you are running other software in the same system.\n" " 3) Check if you have a \"noisy neighbour\" problem.\n" " 4) Check with 'redis-cli --intrinsic-latency 100' what is the intrinsic latency in your system.\n" " 5) Check if the problem is allocator-related by recompiling Redis with MALLOC=libc, if you are using Jemalloc. However this may create fragmentation problems.\n");