Inclusive language

This commit is contained in:
Vivek Saini 2022-04-14 23:54:05 +00:00
parent 9e4d9560bc
commit 12ce8bcd2c
2 changed files with 4 additions and 4 deletions

View File

@ -3343,7 +3343,7 @@ int slaveTryPartialResynchronization(redisMaster *mi, connection *conn, int read
memcpy(g_pserver->replid,sznew,sizeof(g_pserver->replid));
memcpy(mi->cached_master->replid,sznew,sizeof(g_pserver->replid));
/* Disconnect all the sub-slaves: they need to be notified. */
/* Disconnect all the replicas: they need to be notified. */
disconnectSlaves();
}
}

View File

@ -1870,9 +1870,9 @@ struct redisMaster {
off_t repl_transfer_size; /* Size of RDB to read from master during sync. */
off_t repl_transfer_read; /* Amount of RDB read from master during sync. */
off_t repl_transfer_last_fsync_off; /* Offset when we fsync-ed last time. */
connection *repl_transfer_s; /* Slave -> Master SYNC socket */
int repl_transfer_fd; /* Slave -> Master SYNC temp file descriptor */
char *repl_transfer_tmpfile; /* Slave-> master SYNC temp file name */
connection *repl_transfer_s; /* Replica -> Master SYNC socket */
int repl_transfer_fd; /* Replica -> Master SYNC temp file descriptor */
char *repl_transfer_tmpfile; /* Replica-> master SYNC temp file name */
time_t repl_transfer_lastio; /* Unix time of the latest read, for timeout */
time_t repl_down_since; /* Unix time at which link with master went down */