diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-07-18 11:46:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-18 11:46:47 +0100 |
commit | fa8271c5ac034bdffe080dd6b0591bef7aeadd81 (patch) | |
tree | 07833de4a0c2f7f2304bc45a43133a2a5b303367 /changelog.d | |
parent | Ignore redactions of m.room.create events (#5701) (diff) | |
download | synapse-fa8271c5ac034bdffe080dd6b0591bef7aeadd81.tar.xz |
Convert synapse.federation.transport.server to async (#5689)
* Convert BaseFederationServlet._wrap to async Empirically, this fixes some lost stacktraces. It should be safe because the wrapped function is called from JsonResource._async_render, which is already async. * Convert the rest of synapse.federation.transport.server to async We may as well do the whole file while we're here. * changelog * flake8
Diffstat (limited to 'changelog.d')
-rw-r--r-- | changelog.d/5689.misc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/5689.misc b/changelog.d/5689.misc new file mode 100644 index 0000000000..8aa3e3f6a2 --- /dev/null +++ b/changelog.d/5689.misc @@ -0,0 +1 @@ +Convert `synapse.federation.transport.server` to `async`. Might improve some stack traces. \ No newline at end of file |