Skip to content

Commit

Permalink
Fix default endpoint in client config
Browse files Browse the repository at this point in the history
  • Loading branch information
gdiazlo committed Apr 10, 2019
1 parent e3c511b commit 5a400d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ type Config struct {
// DefaultConfig creates a Config structures with default values.
func DefaultConfig() *Config {
return &Config{
Endpoints: []string{"127.0.0.1:8800"},
Endpoints: []string{"http://127.0.0.1:8800"},
APIKey: "my-key",
Insecure: DefaultInsecure,
Timeout: DefaultTimeout,
Expand Down

0 comments on commit 5a400d2

Please sign in to comment.