Skip to content

Commit

Permalink
createLatencyReport(): initialize all advices to zero.
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Jul 8, 2014
1 parent 7fb90a6 commit 51e01c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/latency.c
Expand Up @@ -199,9 +199,9 @@ 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; /* Use higher HZ. */
int advise_large_objects; /* Deletion of large objects. */
int advise_relax_fsync_policy; /* appendfsync always is slow. */
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;

/* Return ASAP if the latency engine is disabled and it looks like it
Expand Down

0 comments on commit 51e01c0

Please sign in to comment.