summary refs log tree commit diff
path: root/changelog.d/4358.misc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* changelogRichard van der Hoff2019-01-081-1/+0
|
* Refactor request sending to have better excpetions (#4358)Erik Johnston2019-01-081-0/+1
* Correctly retry and back off if we get a HTTPerror response * Refactor request sending to have better excpetions MatrixFederationHttpClient blindly reraised exceptions to the caller without differentiating "expected" failures (e.g. connection timeouts etc) versus more severe problems (e.g. programming errors). This commit adds a RequestSendFailed exception that is raised when "expected" failures happen, allowing the TransactionQueue to log them as warnings while allowing us to log other exceptions as actual exceptions.