Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

server/leader: use the compact revision to watch leader #1396

Merged
merged 9 commits into from
Dec 29, 2018
2 changes: 1 addition & 1 deletion pkg/integration_test/leader_watch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

func (s *integrationTestSuite) TestWatcher(c *C) {
c.Parallel()
cluster, err := newTestCluster(1)
cluster, err := newTestCluster(1, func(conf *server.Config) { conf.AutoCompactionRetention = "1s" })
c.Assert(err, IsNil)
defer cluster.Destroy()

Expand Down
4 changes: 2 additions & 2 deletions server/leader.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ func (s *Server) watchLeader(leader *pdpb.Member, revision int64) {
for wresp := range rch {
// meet compacted error, use current revision.
if wresp.CompactRevision != 0 {
log.Warnf("required revision %d has been compacted, use current revision", revision)
revision = 0
log.Warnf("required revision %d has been compacted, use the compact revision %d", revision, wresp.CompactRevision)
revision = wresp.CompactRevision
nolouch marked this conversation as resolved.
Show resolved Hide resolved
break
}
if wresp.Canceled {
Expand Down