mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix logic error
This commit is contained in:
parent
939e4b57a8
commit
87e5a02a99
|
@ -70,7 +70,7 @@ func (s *SuperBlock) Bytes() []byte {
|
|||
}
|
||||
|
||||
func (s *SuperBlock) Initialized() bool {
|
||||
return s.ReplicaPlacement == nil || s.Ttl == nil
|
||||
return s.ReplicaPlacement != nil && s.Ttl != nil
|
||||
}
|
||||
|
||||
func (v *Volume) maybeWriteSuperBlock() error {
|
||||
|
|
Loading…
Reference in a new issue