Merge "serverinit: enable blobPacked in default config"

This commit is contained in:
Mathieu Lonjaret 2015-12-24 23:28:20 +00:00 committed by Gerrit Code Review
commit d471cba23f
3 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@
"/bs-loose/": {
"handler": "storage-filesystem",
"handlerArgs": {
"path": ["_env", "${CAMLI_ROOT}/loose"]
"path": ["_env", "${CAMLI_ROOT}"]
}
},

View File

@ -302,7 +302,6 @@ func (c *serverCmd) setEnvVars() error {
setenv(k, v)
}
c.makeSuffixdir(filepath.Join(fullSuffix("bs"), "packed"))
c.makeSuffixdir(filepath.Join(fullSuffix("bs"), "loose"))
setenv("CAMLI_PORT", c.port)
if c.flickrAPIKey != "" {
setenv("CAMLI_FLICKR_ENABLED", "true")

View File

@ -936,6 +936,7 @@ func WriteDefaultConfigFile(filePath string, useSQLite bool) error {
return fmt.Errorf("Could not create default blobs directory: %v", err)
}
conf.BlobPath = blobDir
conf.PackRelated = true
if useSQLite {
conf.SQLite = filepath.Join(osutil.CamliVarDir(), "index.sqlite")
} else {