diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-01-08 09:45:26 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-01-08 09:45:26 -0800 |
| commit | 288baf37fd214d7ef9b40fae547976dff8357d8b (patch) | |
| tree | 0a8ed51ec17f8c1d45d619327d48f57caf68c16a /weed/storage/volume_loading.go | |
| parent | acf7ca7b93e0a33e9fc987dec600d1b9f1dc1e32 (diff) | |
| download | seaweedfs-288baf37fd214d7ef9b40fae547976dff8357d8b.tar.xz seaweedfs-288baf37fd214d7ef9b40fae547976dff8357d8b.zip | |
saving .vif files correctly
Diffstat (limited to 'weed/storage/volume_loading.go')
| -rw-r--r-- | weed/storage/volume_loading.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/weed/storage/volume_loading.go b/weed/storage/volume_loading.go index fa1f7d617..6b42fc452 100644 --- a/weed/storage/volume_loading.go +++ b/weed/storage/volume_loading.go @@ -26,9 +26,7 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind fileName := v.FileName() alreadyHasSuperBlock := false - if !v.maybeLoadVolumeInfo() { - v.SaveVolumeInfo() - } + hasVolumeInfoFile := v.maybeLoadVolumeInfo() && v.volumeInfo.Version != 0 if v.HasRemoteFile() { v.noWriteCanDelete = true @@ -141,6 +139,11 @@ func (v *Volume) load(alsoLoadIndex bool, createDatIfMissing bool, needleMapKind } } + if !hasVolumeInfoFile { + v.volumeInfo.Version = uint32(v.SuperBlock.Version) + v.SaveVolumeInfo() + } + stats.VolumeServerVolumeCounter.WithLabelValues(v.Collection, "volume").Inc() return err |
