configstore: set base path for datamanager
Don't put datamanager base dirs inside the root of the ost but use a base path. Let's do it now before releasing since this is a breaking change that requires moving the ost data to the new path
This commit is contained in:
parent
5db23410d0
commit
ea025638ff
|
@ -72,6 +72,7 @@ func NewConfigstore(ctx context.Context, c *config.Configstore) (*Configstore, e
|
||||||
}
|
}
|
||||||
|
|
||||||
dmConf := &datamanager.DataManagerConfig{
|
dmConf := &datamanager.DataManagerConfig{
|
||||||
|
BasePath: "configdata",
|
||||||
E: e,
|
E: e,
|
||||||
OST: ost,
|
OST: ost,
|
||||||
DataTypes: []string{
|
DataTypes: []string{
|
||||||
|
|
Loading…
Reference in New Issue