Skip to content
Snippets Groups Projects
Unverified Commit 0aab50c7 authored by Richard van der Hoff's avatar Richard van der Hoff Committed by GitHub
Browse files

fix ordering of bg update (#10291)

this was a typo introduced in #10282. We don't want to end up doing the
`replace_stream_ordering_column` update after anything that comes up in
migration 60/03.
parent e72c2874
No related branches found
No related tags found
No related merge requests found
Fix a long-standing bug where Synapse would return errors after 2<sup>31</sup> events were handled by the server.
...@@ -42,4 +42,4 @@ INSERT INTO background_updates (ordering, update_name, progress_json, depends_on ...@@ -42,4 +42,4 @@ INSERT INTO background_updates (ordering, update_name, progress_json, depends_on
-- ... and another to do the switcheroo -- ... and another to do the switcheroo
INSERT INTO background_updates (ordering, update_name, progress_json, depends_on) VALUES INSERT INTO background_updates (ordering, update_name, progress_json, depends_on) VALUES
(6003, 'replace_stream_ordering_column', '{}', 'index_stream_ordering2_ts'); (6001, 'replace_stream_ordering_column', '{}', 'index_stream_ordering2_ts');
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