diff options
author | Dan Callaghan <djc@djc.id.au> | 2020-09-11 04:49:08 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-10 19:49:08 +0100 |
commit | c312ee3cde39d9c97d3552b43533a4384321dc9e (patch) | |
tree | aedc08dfceeae6647699181a8c216c8a2696a32e /changelog.d | |
parent | Add /_synapse/client to the reverse proxy docs (#8227) (diff) | |
download | synapse-c312ee3cde39d9c97d3552b43533a4384321dc9e.tar.xz |
Use TLSv1.2 for fake servers in tests (#8208)
Some Linux distros have begun disabling TLSv1.0 and TLSv1.1 by default for security reasons, for example in Fedora 33 onwards: https://fedoraproject.org/wiki/Changes/StrongCryptoSettings2 Use TLSv1.2 for the fake TLS servers created in the test suite, to avoid failures due to OpenSSL disallowing TLSv1.0: <twisted.python.failure.Failure OpenSSL.SSL.Error: [('SSL routines', 'ssl_choose_client_version', 'unsupported protocol')]> Signed-off-by: Dan Callaghan <djc@djc.id.au>
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/8208.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/8208.misc b/changelog.d/8208.misc new file mode 100644 index 0000000000..e65da88c46 --- /dev/null +++ b/changelog.d/8208.misc @@ -0,0 +1 @@ +Fix tests on distros which disable TLSv1.0. Contributed by @danc86. |