mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
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.
This commit is contained in:
parent
e72c287418
commit
0aab50c772
1
changelog.d/10291.bugfix
Normal file
1
changelog.d/10291.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
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
|
|||||||
|
|
||||||
-- ... 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');
|
||||||
|
Loading…
Reference in New Issue
Block a user