fix Hound warning
This commit is contained in:
parent
32c2cafa89
commit
91dc14c9fc
1 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ func ParseConfig(s string) (interface{}, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func createConfig(endpoint string, path []string, useHttp bool) (interface{}, error) {
|
func createConfig(endpoint string, path []string, useHTTP bool) (interface{}, error) {
|
||||||
var prefix string
|
var prefix string
|
||||||
switch {
|
switch {
|
||||||
case len(path) < 1:
|
case len(path) < 1:
|
||||||
|
@ -65,7 +65,7 @@ func createConfig(endpoint string, path []string, useHttp bool) (interface{}, er
|
||||||
}
|
}
|
||||||
return Config{
|
return Config{
|
||||||
Endpoint: endpoint,
|
Endpoint: endpoint,
|
||||||
UseHTTP: useHttp,
|
UseHTTP: useHTTP,
|
||||||
Bucket: path[0],
|
Bucket: path[0],
|
||||||
Prefix: prefix,
|
Prefix: prefix,
|
||||||
}, nil
|
}, nil
|
||||||
|
|
Loading…
Add table
Reference in a new issue