Remove default storage constant

This commit is contained in:
Gregory Eremin 2014-09-09 12:01:51 +04:00
parent cf0b2df844
commit 6e7ee680b3

View File

@ -4,11 +4,6 @@ import (
"flag" "flag"
) )
const (
// With compression: burlesque.kch#opts=c#zcomp=gz#msiz=524288000
DefaultProductionStorage = "burlesque.kch#dfunit=8#msiz=512M"
)
var ( var (
Config struct { Config struct {
Storage string Storage string
@ -18,12 +13,8 @@ var (
) )
func SetupConfig() { func SetupConfig() {
flag.StringVar(&Config.Storage, "storage", "-", "Kyoto Cabinet storage path (e.g. "+DefaultProductionStorage+")") flag.StringVar(&Config.Storage, "storage", "-", "Kyoto Cabinet storage path (e.g. burlesque.kch#dfunit=8#msiz=512M)")
flag.StringVar(&Config.Env, "environment", "production", "Process environment: production or development") flag.StringVar(&Config.Env, "environment", "production", "Process environment: production or development")
flag.IntVar(&Config.Port, "port", 4401, "Server HTTP port") flag.IntVar(&Config.Port, "port", 4401, "Server HTTP port")
flag.Parse() flag.Parse()
if Config.Env == "production" && Config.Storage == "-" {
Config.Storage = DefaultProductionStorage
}
} }