mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-22 08:08:53 -05:00
Delete the residual code related to aof rewrite buf (#10176)
This commit is contained in:
parent
823da54361
commit
ac011ebd7f
@ -2328,9 +2328,7 @@ int rewriteAppendOnlyFileBackground(void) {
|
||||
}
|
||||
|
||||
/* We set aof_selected_db to -1 in order to force the next call to the
|
||||
* feedAppendOnlyFile() to issue a SELECT command, so the differences
|
||||
* accumulated by the parent into server.aof_rewrite_buf will start
|
||||
* with a SELECT statement and it will be safe to merge. */
|
||||
* feedAppendOnlyFile() to issue a SELECT command. */
|
||||
server.aof_selected_db = -1;
|
||||
flushAppendOnlyFile(1);
|
||||
if (openNewIncrAofForAppend() != C_OK) return C_ERR;
|
||||
|
@ -1616,7 +1616,6 @@ struct redisServer {
|
||||
off_t aof_fsync_offset; /* AOF offset which is already synced to disk. */
|
||||
int aof_flush_sleep; /* Micros to sleep before flush. (used by tests) */
|
||||
int aof_rewrite_scheduled; /* Rewrite once BGSAVE terminates. */
|
||||
list *aof_rewrite_buf_blocks; /* Hold changes during an AOF rewrite. */
|
||||
sds aof_buf; /* AOF buffer, written before entering the event loop */
|
||||
int aof_fd; /* File descriptor of currently selected AOF file */
|
||||
int aof_selected_db; /* Currently selected DB in AOF */
|
||||
|
Loading…
Reference in New Issue
Block a user