Commit 88a38fe3 authored by Salvatore Sanfilippo's avatar Salvatore Sanfilippo
Browse files

Merge pull request #2678 from Kiemes/fix-config-resetstat

Fix: aof_delayed_fsync is not reset, fixes #2677
parents fbb9d619 cb98ae12
...@@ -1645,6 +1645,7 @@ void resetServerStats(void) { ...@@ -1645,6 +1645,7 @@ void resetServerStats(void) {
} }
server.stat_net_input_bytes = 0; server.stat_net_input_bytes = 0;
server.stat_net_output_bytes = 0; server.stat_net_output_bytes = 0;
server.aof_delayed_fsync = 0;
} }
void initServer(void) { void initServer(void) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment