Linting and updating tests

This commit is contained in:
Justin Angel
2022-02-21 10:09:23 -05:00
parent 7bf2a91dd0
commit daa75da277
3 changed files with 14 additions and 15 deletions

2
app.go
View File

@@ -171,7 +171,7 @@ func LookupTLSClientAuthMode(mode string) (tls.ClientAuthType, bool) {
// Client cert is _required and verified_.
return tls.RequireAndVerifyClientCert, true
default:
// Return the default when an unknown value is supplied.
// Return the default when an unknown value is supplied.
return tls.RequireAnyClientCert, false
}
}