From e4db34e97c1b7fbe6eae6e71882a5cff09ad9a53 Mon Sep 17 00:00:00 2001 From: antirez Date: Tue, 8 Jul 2014 17:17:02 +0200 Subject: [PATCH] createLatencyReport(): compile before commit avoids commits. --- src/latency.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/latency.c b/src/latency.c index 207baefd..1ba3a36a 100644 --- a/src/latency.c +++ b/src/latency.c @@ -199,7 +199,7 @@ sds createLatencyReport(void) { int advise_local_disk = 0; /* Avoid remote disks. */ int advise_ssd = 0; /* Use an SSD drive. */ int advise_write_load_info = 0; /* Print info about AOF and write load. */ - int advise_hz = 0 /* Use higher HZ. */ + int advise_hz = 0; /* Use higher HZ. */ int advise_large_objects = 0; /* Deletion of large objects. */ int advise_relax_fsync_policy = 0; /* appendfsync always is slow. */ int advices = 0; -- GitLab