summary refs log tree commit diff
path: root/test_postgresql.sh (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-08-22Add missing index on users_in_public_rooms. (#5894)Richard van der Hoff2-0/+18
2019-08-22Servlet to purge old rooms (#5845)Richard van der Hoff6-0/+232
2019-08-22Improve error msg when key-fetch fails (#5896)Richard van der Hoff2-5/+8
There's no point doing a raise_from here, because the exception is always logged at warn with no stacktrace in the caller. Instead, let's try to give better messages to reduce confusion. In particular, this means that we won't log 'Failed to connect to remote server' when we don't even attempt to connect to the remote server due to blacklisting.
2019-08-21Drop some unused tables. (#5893)Richard van der Hoff4-47/+23
These tables are never used, so we may as well drop them.
2019-08-20Avoid deep recursion in appservice recovery (#5885)Richard van der Hoff2-18/+26
Hopefully, this will fix a stack overflow when recovering an appservice. The recursion here leads to a huge chain of deferred callbacks, which then overflows the stack when the chain completes. `inlineCallbacks` makes a better job of this if we use iteration instead. Clean up the code a bit too, while we're there.
2019-08-20Opentracing doc update (#5776)Jorik Schellekens2-27/+41
Update opentracing docs to use the unified 'trace' method
2019-08-20Refactor the Appservice scheduler codeRichard van der Hoff3-49/+68
Get rid of the labyrinthine `recoverer_fn` code, and clean up the startup code (it seemed to be previously inexplicably split between `ApplicationServiceScheduler.start` and `_Recoverer.start`). Add some docstrings too.
2019-08-171.3.1 v1.3.1 github/release-v1.3.1 release-v1.3.1Richard van der Hoff5-5/+28
2019-08-17