I'm setting for REDIS Replication. (1 master - 3 slaves & 1 sentinel )
and I edited Master's configuration like this.
slave-priority 10 (another redis's setting is 100 - default)
then I killed master, the other slave was promoted to MASTER. After startup previous master again, I killed current master. (I expected previous master would be prompted to MASTER. because that server's slave-priority is lower than everything else..)
but another slave was prompted to MASTER, not original master.. (original's master slave-priority setting was changed to default '100' automatically...)
Do you know why happen this situation?
Thank you.