Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion changelog.d/19036.misc
Copy link
Contributor Author

@MadLittleMods MadLittleMods Oct 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Merged as the change we're reverting shouldn't find it's way into an RC (release candidate) that will most likely happen tomorrow.

This file was deleted.

8 changes: 3 additions & 5 deletions synapse/app/homeserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,11 +317,6 @@ def start_listening(self) -> None:
# during parsing
logger.warning("Unrecognized listener type: %s", listener.type)

def start_background_tasks(self) -> None:
super().start_background_tasks()

self.get_datastores().main.db_pool.updates.start_doing_background_updates()


def load_or_generate_config(argv_options: List[str]) -> HomeServerConfig:
"""
Expand Down Expand Up @@ -435,6 +430,9 @@ async def _start_when_reactor_running() -> None:

await _base.start(hs, freeze)

# TODO: Feels like this should be moved somewhere else.
hs.get_datastores().main.db_pool.updates.start_doing_background_updates()

# Register a callback to be invoked once the reactor is running
register_start(hs, _start_when_reactor_running)

Expand Down
Loading