summary refs log tree commit diff
path: root/synapse/logging/_structured.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-10-23Fix import paths in synapse_port_dbBrendan Abolivier1-11/+19
2019-10-23Make synapse_port_db correctly create indexes (#6102)Brendan Abolivier2-52/+131
Make `synapse_port_db` correctly create indexes in the PostgreSQL database, by having it run the background updates on the database before migrating the data. To ensure we're migrating the right data, also block the port if the SQLite3 database still has pending or ongoing background updates. Fixes #4877
2019-10-23Add config linting script that checks for bool casing (#6203)Andrew Morgan14-30/+49
Add a linting script that enforces all boolean values in the default config be lowercase. This has annoyed me for a while so I decided to fix it.
2019-10-22Clean up prepare_database.py a bit and add commentsErik Johnston1-7/+30
2019-10-22Delete background_update table creation in main data_storeErik Johnston1-21/+0
2019-10-22Move README into synapse/storage/__init__.pyErik Johnston2-13/+12
2019-10-22Fix demo script on ipv6-supported boxes (#6229)Andrew Morgan2-2/+2
The synapse demo was a bit flakey in terms of supporting federation. It turns out that if your computer resolved `localhost` to `::1` instead of `127.0.0.1`, the built-in federation blacklist specified in `start.sh` would still block it, since it contained an entry for `::/127`. Removing this no longer prevents Synapse from contacting `::1`, federation works again on these boxes.
2019-10-22Update postgres.md (#6234)Adrien Luxey1-3/+7
Added database owner authentication with `sudo` when `su` does not work
2019-10-22Add a basic README to synapse.storageEri