summary refs log tree commit diff
path: root/test_postgresql.sh (unfollow)
Commit message (Collapse)AuthorFilesLines
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.