We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe2a33d commit 092fbb7Copy full SHA for 092fbb7
bin/cbapi-response
@@ -93,11 +93,21 @@ def configure(opts):
93
print("Successfully wrote credentials to {0}.".format(credential_file))
94
95
96
+def check_tls(opts):
97
+ print("Newest TLS version supported by this install is: {0}.".format(check_python_tls_compatibility()))
98
+
99
100
command_map = {
101
"configure": {
102
"extra_args": {},
103
"help": "Configure CbAPI",
104
"method": configure
105
+ },
106
+ "check-tls": {
107
+ "extra_args": {},
108
+ "help": "Return the latest version of TLS supported by this version of Python and OpenSSL. "
109
+ "Cb Response versions 6.1+ now require TLSv1.2 support.",
110
+ "method": check_tls
111
}
112
113
0 commit comments