diff --git a/common/configloader/configloader.go b/common/configloader/configloader.go index a84b58a4..9007ffd3 100644 --- a/common/configloader/configloader.go +++ b/common/configloader/configloader.go @@ -77,7 +77,7 @@ func (loader *ConfigLoader) Get(key string) (string, error) { raw_value, exists := loader.parsedConfig[key] if !exists { - return "", errors.New("The value for the given key: " + key " was not set") + return "", errors.New("The value for the given key: " + key + " was not set") } err := json.Unmarshal(*raw_value, &value)