Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #2180 from matrix-org/rav/fix_timeout_on_timeout
Browse files Browse the repository at this point in the history
Instantiate DeferredTimedOutError correctly
  • Loading branch information
richvdh authored May 2, 2017
2 parents 3033261 + 2e99627 commit 82475a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion synapse/util/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

class DeferredTimedOutError(SynapseError):
def __init__(self):
super(SynapseError, self).__init__(504, "Timed out")
super(DeferredTimedOutError, self).__init__(504, "Timed out")


def unwrapFirstError(failure):
Expand Down

0 comments on commit 82475a1

Please sign in to comment.