Compare commits

...

2 commits

2 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ go build -ldflags '-X main.version=v420.69-rc23' .
Set the environment variable to a comma-separated list of config files or pass the `-c` flag. Set the environment variable to a comma-separated list of config files or pass the `-c` flag.
```shell ```shell
env CONFIG_PATH=config-template.json go run . env SPACEAPID_CONFIG_PATH=config-template.json go run .
# OR # OR
go run . -c config-credentials.json,config-dynamic.json,config-response.json go run . -c config-credentials.json,config-dynamic.json,config-response.json
``` ```

View file

@ -14,7 +14,7 @@ import (
) )
const ( const (
envConfigPath = "CONFIG_PATH" envConfigPath = "SPACEAPID_CONFIG_PATH"
) )
type pathsT []string type pathsT []string
@ -59,7 +59,7 @@ func getConfigPaths() (paths pathsT) {
// If paths is still empty we are missing something // If paths is still empty we are missing something
if len(paths) == 0 { if len(paths) == 0 {
log.Fatalln("Neither the env variable nor cli flag was specified, we are missing a config file.") log.Fatalln("Error: Neither env: ", envConfigPath, "nor cli flag was specified, unable to start without config.")
} }
return return
} }
@ -91,7 +91,7 @@ func ParseConfiguration() (conf SpaceapidConfig) {
log.Fatalln("Provided file doesn't specify compatibility with API version 14") log.Fatalln("Provided file doesn't specify compatibility with API version 14")
} }
// Initialise fields for environment sensors // Initialize fields for environment sensors
conf.Response.Sensors = make(map[string][]types.EnvironmentSensor) conf.Response.Sensors = make(map[string][]types.EnvironmentSensor)
for key, sensorConfigs := range conf.Dynamic.Sensors { for key, sensorConfigs := range conf.Dynamic.Sensors {
conf.Response.Sensors[key] = make([]types.EnvironmentSensor, len(sensorConfigs)) conf.Response.Sensors[key] = make([]types.EnvironmentSensor, len(sensorConfigs))