From ea025638ffeef3cfc02d4278ed3ecbbd73bf2566 Mon Sep 17 00:00:00 2001 From: Simone Gotti Date: Wed, 3 Jul 2019 17:19:40 +0200 Subject: [PATCH] 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 --- internal/services/configstore/configstore.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/internal/services/configstore/configstore.go b/internal/services/configstore/configstore.go index d2f6a20..48a9a77 100644 --- a/internal/services/configstore/configstore.go +++ b/internal/services/configstore/configstore.go @@ -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),