diff options
author | antirez <antirez@gmail.com> | 2014-07-08 17:12:21 +0200 |
---|---|---|
committer | antirez <antirez@gmail.com> | 2014-07-08 17:12:21 +0200 |
commit | 924dc9731f91ced699a4a05987c66b33f669b06f (patch) | |
tree | b4375ee314223f68c129c3c44c1f28be5a8cfb52 /src/latency.c | |
parent | 51e01c0450c2b985a03a34f46e19b0d0ec67176a (diff) | |
download | redis-924dc9731f91ced699a4a05987c66b33f669b06f.tar.gz |
createLatencyReport(), fix mount option name.
Diffstat (limited to 'src/latency.c')
-rw-r--r-- | src/latency.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/latency.c b/src/latency.c index 52c3f3a98..207baefd5 100644 --- a/src/latency.c +++ b/src/latency.c @@ -391,7 +391,7 @@ sds createLatencyReport(void) { } if (advise_data_writeback) { - report = sdscat(report,"- Mounting ext3/4 filesystems with mode=writeback can provide a performance boost compared to mode=ordered, however this mode of operation provides less guarantees, and sometimes it can happen that after a hard crash the AOF file will have an half-written command at the end and will require to be repaired before Redis restarts.\n"); + report = sdscat(report,"- Mounting ext3/4 filesystems with data=writeback can provide a performance boost compared to data=ordered, however this mode of operation provides less guarantees, and sometimes it can happen that after a hard crash the AOF file will have an half-written command at the end and will require to be repaired before Redis restarts.\n"); } if (advise_disk_contention) { |