mirror of
https://github.com/juanfont/headscale.git
synced 2024-11-23 18:15:26 +00:00
Fix a few linter errors.
This commit is contained in:
parent
283ca3b6f8
commit
491fb0adb3
@ -50,7 +50,7 @@ func loadConfig(path string) error {
|
||||
|
||||
err := viper.ReadInConfig()
|
||||
if err != nil {
|
||||
return errors.New(fmt.Sprintf("Fatal error reading config file: %s \n", err))
|
||||
return fmt.Errorf("Fatal error reading config file: %s \n", err)
|
||||
}
|
||||
|
||||
// Collect any validation errors and return them all at once
|
||||
|
@ -90,7 +90,6 @@ func (*Suite) TestTLSConfigValidation(c *check.C) {
|
||||
|
||||
// Check configuration validation errors (2)
|
||||
configYaml = []byte("---\nserver_url: \"http://192.168.1.12:8000\"\ntls_letsencrypt_hostname: \"example.com\"\ntls_letsencrypt_challenge_type: \"TLS-ALPN-01\"")
|
||||
fmt.Printf(string(configYaml))
|
||||
writeConfig(c, tmpDir, configYaml)
|
||||
err = loadConfig(tmpDir)
|
||||
c.Assert(err, check.NotNil)
|
||||
|
Loading…
Reference in New Issue
Block a user