Skip to content

Commit

Permalink
Merge pull request #79 from torresashjian/flowserializer
Browse files Browse the repository at this point in the history
Change env variables keys
  • Loading branch information
torresashjian authored May 26, 2017
2 parents ceb0599 + a248a9e commit 81b61d9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ import (
)

const (
LOG_LEVEL_DEFAULT = "INFO"
LOG_DATE_FORMAT_KEY = "FLOGO_LOG_DTFORMAT"
LOG_DATE_FORMAT_DEFAULT = "2006-01-02 15:04:05.000"
LOG_DATE_FORMAT_KEY = "LOG_DATETIME_FORMAT"
LOG_LEVEL_KEY = "LOG_LEVEL"
LOG_LEVEL_KEY = "FLOGO_LOG_LEVEL"
LOG_LEVEL_DEFAULT = "INFO"
RUNNER_TYPE_KEY = "FLOGO_RUNNER_TYPE"
RUNNER_TYPE_DEFAULT = "POOLED"
RUNNER_TYPE_KEY = "RUNNER_TYPE"
RUNNER_WORKERS_KEY = "RUNNER_WORKERS"
RUNNER_WORKERS_KEY = "FLOGO_RUNNER_WORKERS"
RUNNER_WORKERS_DEFAULT = 5
RUNNER_QUEUE_SIZE_KEY = "RUNNER_QUEUE_SIZE"
RUNNER_QUEUE_SIZE_KEY = "FLOGO_RUNNER_QUEUE"
RUNNER_QUEUE_SIZE_DEFAULT = 50
STOP_ENGINE_ON_ERROR_KEY = "STOP_ENGINE_ON_ERROR"
APP_CONFIG_LOCATION_DEFAULT = "flogo.json"
APP_CONFIG_LOCATION_KEY = "FLOGO_CONFIG_PATH"
APP_CONFIG_LOCATION_DEFAULT = "flogo.json"
STOP_ENGINE_ON_ERROR_KEY = "STOP_ENGINE_ON_ERROR"
)

//GetFlogoConfigPath returns the flogo config path
Expand Down

0 comments on commit 81b61d9

Please sign in to comment.