fix logic error

This commit is contained in:
Chris Lu 2019-10-09 00:07:18 -07:00
parent 939e4b57a8
commit 87e5a02a99

View File

@ -70,7 +70,7 @@ func (s *SuperBlock) Bytes() []byte {
} }
func (s *SuperBlock) Initialized() bool { func (s *SuperBlock) Initialized() bool {
return s.ReplicaPlacement == nil || s.Ttl == nil return s.ReplicaPlacement != nil && s.Ttl != nil
} }
func (v *Volume) maybeWriteSuperBlock() error { func (v *Volume) maybeWriteSuperBlock() error {