summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorShay <hillerys@element.io>2024-07-16 01:52:39 -0700
committerGitHub <noreply@github.com>2024-07-16 09:52:39 +0100
commit899d33f2baf42727fb9b4c118a931d872690a81c (patch)
tree73d2a8f03ec28ab592344df054c34b5201928983 /tests
parentFix bug where sync could get stuck when using workers (#17438) (diff)
downloadsynapse-899d33f2baf42727fb9b4c118a931d872690a81c.tar.xz
Remove unnecessary call to resume producing in fake channel (#17449)
This fell out of the authenticated media work - this bit of code masked
a bug but does not break anything when removed, so probably should be
removed.
Diffstat (limited to 'tests')
-rw-r--r--tests/server.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/server.py b/tests/server.py
index f1cd0f76be..85602e6953 100644
--- a/tests/server.py
+++ b/tests/server.py
@@ -289,10 +289,6 @@ class FakeChannel:
         self._reactor.run()
 
         while not self.is_finished():
-            # If there's a producer, tell it to resume producing so we get content
-            if self._producer:
-                self._producer.resumeProducing()
-
             if self._reactor.seconds() > end_time:
                 raise TimedOutException("Timed out waiting for request to finish.")