summary refs log tree commit diff
path: root/changelog.d
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2019-07-09 13:37:39 -0400
committerRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2019-07-09 18:37:39 +0100
commit7b3bc755a34cf97138e614379234cfc47f91a5a9 (patch)
tree0b88b2d5bd3bdbe0f52e339288e4014e284d575e /changelog.d
parentInclude the original event in /relations (#5626) (diff)
downloadsynapse-7b3bc755a34cf97138e614379234cfc47f91a5a9.tar.xz
remove unused and unnecessary check for FederationDeniedError (#5645)
FederationDeniedError is a subclass of SynapseError, which is a subclass of
CodeMessageException, so if e is a FederationDeniedError, then this check for
FederationDeniedError will never be reached since it will be caught by the
check for CodeMessageException above.  The check for CodeMessageException does
almost the same thing as this check (since FederationDeniedError initialises
with code=403 and msg="Federation denied with %s."), so may as well just keep
allowing it to handle this case.
Diffstat (limited to 'changelog.d')
-rw-r--r--changelog.d/5645.misc1
1 files changed, 1 insertions, 0 deletions
diff --git a/changelog.d/5645.misc b/changelog.d/5645.misc
new file mode 100644
index 0000000000..4fa9699e4f
--- /dev/null
+++ b/changelog.d/5645.misc
@@ -0,0 +1 @@
+Remove unused and unnecessary check for FederationDeniedError in _exception_to_failure.
\ No newline at end of file