Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
54ece2c5
Commit
54ece2c5
authored
Aug 05, 2015
by
antirez
Browse files
Remove slave state change handled by replicationSetupSlaveForFullResync().
parent
15de6b10
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/rdb.c
View file @
54ece2c5
...
@@ -1571,7 +1571,6 @@ int rdbSaveToSlavesSockets(void) {
...
@@ -1571,7 +1571,6 @@ int rdbSaveToSlavesSockets(void) {
if
(
slave
->
replstate
==
SLAVE_STATE_WAIT_BGSAVE_START
)
{
if
(
slave
->
replstate
==
SLAVE_STATE_WAIT_BGSAVE_START
)
{
clientids
[
numfds
]
=
slave
->
id
;
clientids
[
numfds
]
=
slave
->
id
;
fds
[
numfds
++
]
=
slave
->
fd
;
fds
[
numfds
++
]
=
slave
->
fd
;
slave
->
replstate
=
SLAVE_STATE_WAIT_BGSAVE_END
;
replicationSetupSlaveForFullResync
(
slave
,
getPsyncInitialOffset
());
replicationSetupSlaveForFullResync
(
slave
,
getPsyncInitialOffset
());
/* Put the socket in non-blocking mode to simplify RDB transfer.
/* Put the socket in non-blocking mode to simplify RDB transfer.
* We'll restore it when the children returns (since duped socket
* We'll restore it when the children returns (since duped socket
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment