Skip to content
This repository has been archived by the owner on Dec 7, 2023. It is now read-only.

Commit

Permalink
Fixed Syntax Error
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun-S-Nair committed Sep 22, 2020
1 parent b657b9d commit 2c732a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/configloader/configloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 2c732a8

Please sign in to comment.