diff options
author | David Baker <dave@matrix.org> | 2018-07-19 14:52:35 +0100 |
---|---|---|
committer | David Baker <dave@matrix.org> | 2018-07-19 14:52:35 +0100 |
commit | 650761666dd5452f2e3bb760997f1331a86da72e (patch) | |
tree | ab7ae633a532ae75ca6ac7014e470f4d6cb33503 | |
parent | run_on_reactor is dead (diff) | |
download | synapse-650761666dd5452f2e3bb760997f1331a86da72e.tar.xz |
More run_on_reactor
-rw-r--r-- | synapse/rest/client/v2_alpha/account.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py index 5844ad4f79..f3d86a2e14 100644 --- a/synapse/rest/client/v2_alpha/account.py +++ b/synapse/rest/client/v2_alpha/account.py @@ -373,8 +373,6 @@ class ThreepidDeleteRestServlet(RestServlet): @defer.inlineCallbacks def on_POST(self, request): - yield run_on_reactor() - if self.hs.config.disable_3pid_changes: raise SynapseError(400, "3PID changes disabled on this server") |