Skip to content
Snippets Groups Projects
Commit 5121ae97 authored by Amber Brown's avatar Amber Brown
Browse files

Merge tag 'v0.33.5.1'

Internal Changes
----------------

- Fix incompatibility with older Twisted version in tests. Thanks
  @OlegGirko!
([\#3940](https://github.com/matrix-org/synapse/issues/3940))
parents 82921352 fc691ca9
No related branches found
No related tags found
No related merge requests found
Synapse 0.33.5.1 (2018-09-25)
=============================
Internal Changes
----------------
- Fix incompatibility with older Twisted version in tests. Thanks
@OlegGirko! ([\#3940](https://github.com/matrix-org/synapse/issues/3940))
Synapse 0.33.5 (2018-09-24) Synapse 0.33.5 (2018-09-24)
=========================== ===========================
......
...@@ -27,4 +27,4 @@ try: ...@@ -27,4 +27,4 @@ try:
except ImportError: except ImportError:
pass pass
__version__ = "0.33.5" __version__ = "0.33.5.1"
...@@ -49,7 +49,7 @@ class FederationClientTests(HomeserverTestCase): ...@@ -49,7 +49,7 @@ class FederationClientTests(HomeserverTestCase):
def test_client_never_connect(self): def test_client_never_connect(self):
""" """
If the HTTP request is not connected and is timed out, it'll give a If the HTTP request is not connected and is timed out, it'll give a
ConnectingCancelledError. ConnectingCancelledError or TimeoutError.
""" """
d = self.cl._request("testserv:8008", "GET", "foo/bar", timeout=10000) d = self.cl._request("testserv:8008", "GET", "foo/bar", timeout=10000)
...@@ -71,7 +71,7 @@ class FederationClientTests(HomeserverTestCase): ...@@ -71,7 +71,7 @@ class FederationClientTests(HomeserverTestCase):
self.reactor.advance(10.5) self.reactor.advance(10.5)
f = self.failureResultOf(d) f = self.failureResultOf(d)
self.assertIsInstance(f.value, ConnectingCancelledError) self.assertIsInstance(f.value, (ConnectingCancelledError, TimeoutError))
def test_client_connect_no_response(self): def test_client_connect_no_response(self):
""" """
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment