summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorAndrew Morgan <1342360+anoadragon453@users.noreply.github.com>2020-06-03 16:39:30 +0100
committerGitHub <noreply@github.com>2020-06-03 16:39:30 +0100
commit0188daf32c5d978c33b2bba9eb2b0b63262ca5fe (patch)
tree1c4cc9399cd8f43a9dc965a4b666711202fe8af8 /changelog.d
parentCheck if the localpart is reserved for guests earlier in the registration flo... (diff)
downloadsynapse-0188daf32c5d978c33b2bba9eb2b0b63262ca5fe.tar.xz
Replace instances of reactor pumping with get_success. (#7619)
Calls `self.get_success` on all deferred methods instead of abusing `self.pump()`. This has the benefit of working with coroutines, as well as checking that method execution completed successfully.

There are also a few small cleanups that I made in the process.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/7619.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/7619.misc b/changelog.d/7619.misc
new file mode 100644
index 0000000000..23a8b30b19
--- /dev/null
+++ b/changelog.d/7619.misc
@@ -0,0 +1 @@
+Check that all asynchronous tasks succeed and general cleanup of `MonthlyActiveUsersTestCase` and `TestMauLimit`.