always remember the max volume id

This commit is contained in:
Chris Lu
2017-11-28 17:08:59 -08:00
parent 97f757c669
commit 9026b3e86e
2 changed files with 3 additions and 3 deletions

View File

@@ -25,7 +25,7 @@ func (c *MaxVolumeIdCommand) Apply(server raft.Server) (interface{}, error) {
before := topo.GetMaxVolumeId()
topo.UpAdjustMaxVolumeId(c.MaxVolumeId)
glog.V(4).Infoln("max volume id", before, "==>", topo.GetMaxVolumeId())
glog.V(0).Infoln("max volume id", before, "==>", topo.GetMaxVolumeId())
return nil, nil
}