diff options
| author | chrislu <chris.lu@gmail.com> | 2025-06-19 01:15:25 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2025-06-19 01:15:25 -0700 |
| commit | 2f1b3d68d7f3d4b8684ee37a58938f7af399117c (patch) | |
| tree | d7b4a1cddb602de3ecd2341a60bf0f067a206763 /weed/command/compact.go | |
| parent | 87927d068b02d965f3ea287488942f49f1f4d151 (diff) | |
| download | seaweedfs-2f1b3d68d7f3d4b8684ee37a58938f7af399117c.tar.xz seaweedfs-2f1b3d68d7f3d4b8684ee37a58938f7af399117c.zip | |
pass volume version when creating a volume
Diffstat (limited to 'weed/command/compact.go')
| -rw-r--r-- | weed/command/compact.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/compact.go b/weed/command/compact.go index 6f5f2307a..59e69bc74 100644 --- a/weed/command/compact.go +++ b/weed/command/compact.go @@ -41,7 +41,7 @@ func runCompact(cmd *Command, args []string) bool { preallocate := *compactVolumePreallocate * (1 << 20) vid := needle.VolumeId(*compactVolumeId) - v, err := storage.NewVolume(util.ResolvePath(*compactVolumePath), util.ResolvePath(*compactVolumePath), *compactVolumeCollection, vid, storage.NeedleMapInMemory, nil, nil, preallocate, 0, 0) + v, err := storage.NewVolume(util.ResolvePath(*compactVolumePath), util.ResolvePath(*compactVolumePath), *compactVolumeCollection, vid, storage.NeedleMapInMemory, nil, nil, preallocate, needle.GetCurrentVersion(), 0, 0) if err != nil { glog.Fatalf("Load Volume [ERROR] %s\n", err) } |
