Skip to content

Commit ff592d5

Browse files
committed
migrate config to v7
1 parent 84a2f31 commit ff592d5

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

node/config/migrate.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var log = logging.Logger("cfg")
1515

1616
// CurrentVersion is the config version expected by Boost.
1717
// We need to migrate the config file to this version.
18-
const CurrentVersion = 6
18+
const CurrentVersion = 7
1919

2020
type migrateUpFn = func(cfgPath string) (string, error)
2121

@@ -26,6 +26,7 @@ var migrations = []migrateUpFn{
2626
v3Tov4, // index 3 => version 4
2727
v4Tov5, // index 4 => version 5
2828
v5Tov6, // index 5 => version 6
29+
v6Tov7, // index 6 => version 7
2930
}
3031

3132
// This struct is used to get the config file version

node/config/v6_to_v7.go

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package config
2+
3+
import (
4+
"fmt"
5+
)
6+
7+
// Migrate from config version 6 to version 7
8+
func v6Tov7(cfgPath string) (string, error) {
9+
cfg, err := FromFile(cfgPath, DefaultBoost())
10+
if err != nil {
11+
return "", fmt.Errorf("parsing config file %s: %w", cfgPath, err)
12+
}
13+
14+
boostCfg, ok := cfg.(*Boost)
15+
if !ok {
16+
return "", fmt.Errorf("unexpected config type %T: expected *config.Boost", cfg)
17+
}
18+
19+
// Update the Boost config version
20+
boostCfg.ConfigVersion = 7
21+
22+
bz, err := ConfigUpdate(boostCfg, DefaultBoost(), true, false)
23+
if err != nil {
24+
return "", fmt.Errorf("applying configuration: %w", err)
25+
}
26+
27+
return string(bz), nil
28+
}

0 commit comments

Comments
 (0)