Skip to content
Snippets Groups Projects
Unverified Commit bfd7a9b6 authored by Dirk Klimpel's avatar Dirk Klimpel Committed by GitHub
Browse files

Fix comments referencing v1.46.0 from PR #10969. (#11212)

#10969 was merged after 1.46.0rc1 was cut and will be included
in v1.47.0rc1 instead.
parent ad4eab98
No related branches found
No related tags found
No related merge requests found
Fix a long-standing bug where messages in the `device_inbox` table for deleted devices would persist indefinitely. Contributed by @dklimpel and @JohannesKleine.
\ No newline at end of file
...@@ -594,7 +594,7 @@ class DeviceInboxBackgroundUpdateStore(SQLBaseStore): ...@@ -594,7 +594,7 @@ class DeviceInboxBackgroundUpdateStore(SQLBaseStore):
) -> int: ) -> int:
"""A background update that deletes all device_inboxes for deleted devices. """A background update that deletes all device_inboxes for deleted devices.
This should only need to be run once (when users upgrade to v1.46.0) This should only need to be run once (when users upgrade to v1.47.0)
Args: Args:
progress: JsonDict used to store progress of this background update progress: JsonDict used to store progress of this background update
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
-- Remove messages from the device_inbox table which were orphaned -- Remove messages from the device_inbox table which were orphaned
-- when a device was deleted using Synapse earlier than 1.46.0. -- when a device was deleted using Synapse earlier than 1.47.0.
-- This runs as background task, but may take a bit to finish. -- This runs as background task, but may take a bit to finish.
INSERT INTO background_updates (ordering, update_name, progress_json) VALUES INSERT INTO background_updates (ordering, update_name, progress_json) VALUES
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment