fix bug when reading back the replica settings!

This commit is contained in:
Chris Lu
2014-04-13 03:06:15 -07:00
parent 47620bb27a
commit 6084e7670a
2 changed files with 15 additions and 1 deletions

View File

@@ -36,7 +36,7 @@ func NewReplicaPlacementFromString(t string) (*ReplicaPlacement, error) {
}
func NewReplicaPlacementFromByte(b byte) (*ReplicaPlacement, error) {
return NewReplicaPlacementFromString(fmt.Sprintf("%d", b))
return NewReplicaPlacementFromString(fmt.Sprintf("%03d", b))
}
func (rp *ReplicaPlacement) Byte() byte {