Skip to content

Commit

Permalink
[minor_changes] Changed TLS max version to 1.3 in client.go file.
Browse files Browse the repository at this point in the history
  • Loading branch information
anvitha-jain authored and lhercot committed Mar 27, 2024
1 parent b46bf09 commit 597115f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func (c *Client) useInsecureHTTPClient(insecure bool) *http.Transport {
PreferServerCipherSuites: true,
InsecureSkipVerify: insecure,
MinVersion: tls.VersionTLS11,
MaxVersion: tls.VersionTLS12,
MaxVersion: tls.VersionTLS13,
},
}

Expand Down

0 comments on commit 597115f

Please sign in to comment.