Home
last modified time | relevance | path

Searched refs:repl_timeout (Results 1 – 5 of 5) sorted by relevance

/redis-3.2.3/src/
H A Dconfig.c323 server.repl_timeout = atoi(argv[1]); in loadServerConfigFromString()
324 if (server.repl_timeout <= 0) { in loadServerConfigFromString()
942 "repl-timeout",server.repl_timeout,1,LLONG_MAX) {
1103 config_get_numerical_field("repl-timeout",server.repl_timeout);
1807 …rewriteConfigNumericalOption(state,"repl-timeout",server.repl_timeout,CONFIG_DEFAULT_REPL_TIMEOUT);
H A Dreplication.c2243 (time(NULL)-server.repl_transfer_lastio) > server.repl_timeout) in replicationCron()
2251 (time(NULL)-server.repl_transfer_lastio) > server.repl_timeout) in replicationCron()
2259 (time(NULL)-server.master->lastinteraction) > server.repl_timeout) in replicationCron()
2328 if ((server.unixtime - slave->repl_ack_time) > server.repl_timeout) in replicationCron()
H A Drdb.c1619 anetSendTimeout(NULL,slave->fd,server.repl_timeout*1000); in rdbSaveToSlavesSockets()
H A Dserver.h881 int repl_timeout; /* Timeout after N seconds of master idle */ member
H A Dserver.c1522 server.repl_timeout = CONFIG_DEFAULT_REPL_TIMEOUT; in initServerConfig()