mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-10 08:59:28 -05:00
Merge branch 'develop' of github.com:matrix-org/synapse into erikj/group_fed_update_profile
This commit is contained in:
commit
39dc52157d
57 changed files with 171 additions and 135 deletions
|
|
@ -112,7 +112,7 @@ class Authenticator(object):
|
|||
key = strip_quotes(param_dict["key"])
|
||||
sig = strip_quotes(param_dict["sig"])
|
||||
return (origin, key, sig)
|
||||
except:
|
||||
except Exception:
|
||||
raise AuthenticationError(
|
||||
400, "Malformed Authorization header", Codes.UNAUTHORIZED
|
||||
)
|
||||
|
|
@ -177,7 +177,7 @@ class BaseFederationServlet(object):
|
|||
if self.REQUIRE_AUTH:
|
||||
logger.exception("authenticate_request failed")
|
||||
raise
|
||||
except:
|
||||
except Exception:
|
||||
logger.exception("authenticate_request failed")
|
||||
raise
|
||||
|
||||
|
|
@ -270,7 +270,7 @@ class FederationSendServlet(BaseFederationServlet):
|
|||
code, response = yield self.handler.on_incoming_transaction(
|
||||
transaction_data
|
||||
)
|
||||
except:
|
||||
except Exception:
|
||||
logger.exception("on_incoming_transaction failed")
|
||||
raise
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue