mirror of
https://github.com/fluencelabs/redis
synced 2025-06-11 08:11:20 +00:00
Fix: aof_delayed_fsync is not reset
aof_delayed_fsync was not set to 0 when calling CONFIG RESETSTAT
This commit is contained in:
@ -1645,6 +1645,7 @@ void resetServerStats(void) {
|
||||
}
|
||||
server.stat_net_input_bytes = 0;
|
||||
server.stat_net_output_bytes = 0;
|
||||
server.aof_delayed_fsync = 0;
|
||||
}
|
||||
|
||||
void initServer(void) {
|
||||
|
Reference in New Issue
Block a user