mirror of https://github.com/tidwall/tile38.git
Merge pull request #752 from Kilowhisky/Fix_750
Add 'slave_repl_offset' to the INFO replication command output
This commit is contained in:
commit
2b080f4aee
|
@ -450,6 +450,7 @@ func (s *Server) writeInfoReplication(w *bytes.Buffer) {
|
|||
fmt.Fprintf(w, "role:slave\r\n")
|
||||
fmt.Fprintf(w, "master_host:%s\r\n", s.config.followHost())
|
||||
fmt.Fprintf(w, "master_port:%v\r\n", s.config.followPort())
|
||||
fmt.Fprintf(w, "slave_repl_offset:%v\r\n", int(s.faofsz))
|
||||
if s.config.replicaPriority() >= 0 {
|
||||
fmt.Fprintf(w, "slave_priority:%v\r\n", s.config.replicaPriority())
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue