diff options
author | Neil Johnson <neil@fragile.org.uk> | 2018-08-18 14:39:45 +0100 |
---|---|---|
committer | Neil Johnson <neil@fragile.org.uk> | 2018-08-18 14:39:45 +0100 |
commit | e07970165f852ccbc4542f1aaf0fd1b2bc54b973 (patch) | |
tree | b78cc9c059e146354da27b9466fd1d261219ec8c /synapse/api/auth.py | |
parent | special case server_notices_mxid (diff) | |
download | synapse-e07970165f852ccbc4542f1aaf0fd1b2bc54b973.tar.xz |
rename error code
Diffstat (limited to 'synapse/api/auth.py')
-rw-r--r-- | synapse/api/auth.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 55384d6ffe..4207a48afd 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -792,7 +792,7 @@ class Auth(object): if self.hs.config.hs_disabled: raise ResourceLimitError( 403, self.hs.config.hs_disabled_message, - errcode=Codes.RESOURCE_LIMIT_EXCEED, + errcode=Codes.RESOURCE_LIMIT_EXCEEDED, admin_uri=self.hs.config.admin_uri, limit_type=self.hs.config.hs_disabled_limit_type ) @@ -809,6 +809,6 @@ class Auth(object): 403, "Monthly Active User Limit Exceeded", admin_uri=self.hs.config.admin_uri, - errcode=Codes.RESOURCE_LIMIT_EXCEED, + errcode=Codes.RESOURCE_LIMIT_EXCEEDED, limit_type="monthly_active_user" ) |