Skip to content

Commit

Permalink
fix: Go integration server uses a minimum TLS version of 1.3. (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
clundin25 authored Sep 13, 2022
1 parent 520184e commit a275a18
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/testing_utils/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ func main() {
config := &tls.Config{
ClientAuth: tls.RequireAndVerifyClientCert,
ClientCAs: caCertPool,
MinVersion: tls.VersionTLS13,
}
config.BuildNameToCertificate()

Expand Down

0 comments on commit a275a18

Please sign in to comment.