1
0

GODT-2291: Change gluon store default location from Cache to Data.

This commit is contained in:
Romain Le Jeune
2023-01-24 13:35:45 +00:00
parent 5a70a16149
commit ee4da8a89c
9 changed files with 32 additions and 43 deletions

View File

@ -221,14 +221,14 @@ func newBridge(
return nil, fmt.Errorf("failed to get Gluon directory: %w", err)
}
gluonConfigDir, err := locator.ProvideGluonConfigPath()
gluonDataDir, err := locator.ProvideGluonDataPath()
if err != nil {
return nil, fmt.Errorf("failed to get Gluon Database directory: %w", err)
}
imapServer, err := newIMAPServer(
gluonCacheDir,
gluonConfigDir,
gluonDataDir,
curVersion,
tlsConfig,
reporter,