mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-08 00:45:00 -04:00
Fix incorrect exception handling in KeyUploadServlet.on_POST (#7563)
Introduced in #7556
This commit is contained in:
parent
00db90f409
commit
04729b86f8
2 changed files with 2 additions and 1 deletions
|
@ -214,7 +214,7 @@ class KeyUploadServlet(RestServlet):
|
|||
self.main_uri + request.uri.decode("ascii"), body, headers=headers
|
||||
)
|
||||
except HttpResponseException as e:
|
||||
raise e.to_synapse() from e
|
||||
raise e.to_synapse_error() from e
|
||||
except RequestSendFailed as e:
|
||||
raise SynapseError(502, "Failed to talk to master") from e
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue