mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-01-18 06:30:07 +08: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 New Issue
Block a user