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/backup.go | |
| parent | 87927d068b02d965f3ea287488942f49f1f4d151 (diff) | |
| download | seaweedfs-2f1b3d68d7f3d4b8684ee37a58938f7af399117c.tar.xz seaweedfs-2f1b3d68d7f3d4b8684ee37a58938f7af399117c.zip | |
pass volume version when creating a volume
Diffstat (limited to 'weed/command/backup.go')
| -rw-r--r-- | weed/command/backup.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/weed/command/backup.go b/weed/command/backup.go index f9b9fba64..d5599372e 100644 --- a/weed/command/backup.go +++ b/weed/command/backup.go @@ -115,7 +115,10 @@ func runBackup(cmd *Command, args []string) bool { return true } } - v, err := storage.NewVolume(util.ResolvePath(*s.dir), util.ResolvePath(*s.dir), *s.collection, vid, storage.NeedleMapInMemory, replication, ttl, 0, 0, 0) + + ver := needle.Version(stats.Version) + + v, err := storage.NewVolume(util.ResolvePath(*s.dir), util.ResolvePath(*s.dir), *s.collection, vid, storage.NeedleMapInMemory, replication, ttl, 0, ver, 0, 0) if err != nil { fmt.Printf("Error creating or reading from volume %d: %v\n", vid, err) return true @@ -142,7 +145,7 @@ func runBackup(cmd *Command, args []string) bool { fmt.Printf("Error destroying volume: %v\n", err) } // recreate an empty volume - v, err = storage.NewVolume(util.ResolvePath(*s.dir), util.ResolvePath(*s.dir), *s.collection, vid, storage.NeedleMapInMemory, replication, ttl, 0, 0, 0) + v, err = storage.NewVolume(util.ResolvePath(*s.dir), util.ResolvePath(*s.dir), *s.collection, vid, storage.NeedleMapInMemory, replication, ttl, 0, ver, 0, 0) if err != nil { fmt.Printf("Error creating or reading from volume %d: %v\n", vid, err) return true |
