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,8 +72,9 @@ func NewConfigstore(ctx context.Context, c *config.Configstore) (*Configstore, e
|
|||
}
|
||||
|
||||
dmConf := &datamanager.DataManagerConfig{
|
||||
E: e,
|
||||
OST: ost,
|
||||
BasePath: "configdata",
|
||||
E: e,
|
||||
OST: ost,
|
||||
DataTypes: []string{
|
||||
string(types.ConfigTypeUser),
|
||||
string(types.ConfigTypeOrg),
|
||||
|
|
Loading…
Reference in New Issue