Skip to content

Commit

Permalink
Fix typo in the config checked for TLS no-verify #316 (#329)
Browse files Browse the repository at this point in the history
  • Loading branch information
toddpalino committed Jan 19, 2018
1 parent 3b765ea commit b6184ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/internal/httpserver/kafka.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func getTLSProfile(name string) *httpResponseTLSProfile {
CertFile: viper.GetString(configRoot + ".certfile"),
KeyFile: viper.GetString(configRoot + ".keyfile"),
CAFile: viper.GetString(configRoot + ".cafile"),
NoVerify: viper.GetBool(configRoot + ".no-verify"),
NoVerify: viper.GetBool(configRoot + ".noverify"),
}
}

Expand Down

0 comments on commit b6184ff

Please sign in to comment.