summary refs log tree commit diff
path: root/scripts/update_synapse_database (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move scripts directory inside synapse, exposing as setuptools entry_points ↵David Robertson2022-03-021-117/+0
| | | | | | | | | | | | (#12118) * Two scripts are basically entry_points already * Move and rename scripts/* to synapse/_scripts/*.py * Delete sync_room_to_group.pl * Expose entry points in setup.py * Update linter script and config * Fixup scripts & docs mentioning scripts that moved Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
* Remove `HomeServer.get_datastore()` (#12031)Richard van der Hoff2022-02-231-1/+1
| | | | | | | The presence of this method was confusing, and mostly present for backwards compatibility. Let's get rid of it. Part of #11733
* Use version string helper from matrix-common (#11979)David Robertson2022-02-141-3/+4
| | | | * Require latest matrix-common * Use the common function
* Require direct references to configuration variables. (#10985)Patrick Cloke2021-10-061-1/+1
| | | | | | This removes the magic allowing accessing configurable variables directly from the config object. It is now required that a specific configuration class is used (e.g. `config.foo` must be replaced with `config.server.foo`).
* Add `--run-background-updates` option to `update_database` script. (#10954)Nick Barrett2021-10-061-0/+116
Signed-off-by: Nick Barrett <nick@beeper.com>