mirror of https://mirror.osredm.com/root/redis.git
Fix: aof_delayed_fsync is not reset
aof_delayed_fsync was not set to 0 when calling CONFIG RESETSTAT
This commit is contained in:
parent
f049cfdb0d
commit
6142ddc6eb
|
@ -1761,6 +1761,7 @@ void resetServerStats(void) {
|
|||
}
|
||||
server.stat_net_input_bytes = 0;
|
||||
server.stat_net_output_bytes = 0;
|
||||
server.aof_delayed_fsync = 0;
|
||||
}
|
||||
|
||||
void initServer(void) {
|
||||
|
|
Loading…
Reference in New Issue