diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-12-03 13:47:50 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-12-03 13:48:55 +0000 |
commit | 478b4e3ed444fc58713d62039dee613f9c057a46 (patch) | |
tree | 3113446aebf4c4e09c8ac7cbfacc6f9e494382e7 | |
parent | Merge pull request #414 from matrix-org/erikj/if_not_exists (diff) | |
download | synapse-478b4e3ed444fc58713d62039dee613f9c057a46.tar.xz |
Reuse the captcha client rather than creating a new one for each request
-rw-r--r-- | synapse/handlers/register.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/synapse/handlers/register.py b/synapse/handlers/register.py index 5166bc7b62..a037da0f70 100644 --- a/synapse/handlers/register.py +++ b/synapse/handlers/register.py @@ -42,6 +42,7 @@ class RegistrationHandler(BaseHandler): self.distributor = hs.get_distributor() self.distributor.declare("registered_user") + self.captch_client = CaptchaServerHttpClient(hs) @defer.inlineCallbacks def check_username(self, localpart): @@ -306,10 +307,7 @@ class RegistrationHandler(BaseHandler): """ Used only by c/s api v1 """ - # TODO: get this from the homeserver rather than creating a new one for - # each request - client = CaptchaServerHttpClient(self.hs) - data = yield client.post_urlencoded_get_raw( + data = yield self.captcha_client.post_urlencoded_get_raw( "http://www.google.com:80/recaptcha/api/verify", args={ 'privatekey': private_key, |