mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:16:09 -04:00
Lower minumum batch size to 1 for background updates (#11422)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
This commit is contained in:
parent
f25c75d376
commit
7f9841bdec
4 changed files with 23 additions and 13 deletions
|
@ -20,6 +20,7 @@ import synapse.rest.admin
|
|||
from synapse.api.errors import Codes
|
||||
from synapse.rest.client import login
|
||||
from synapse.server import HomeServer
|
||||
from synapse.storage.background_updates import BackgroundUpdater
|
||||
|
||||
from tests import unittest
|
||||
|
||||
|
@ -150,9 +151,11 @@ class BackgroundUpdatesTestCase(unittest.HomeserverTestCase):
|
|||
"current_updates": {
|
||||
"master": {
|
||||
"name": "test_update",
|
||||
"average_items_per_ms": 0.1,
|
||||
"average_items_per_ms": 0.001,
|
||||
"total_duration_ms": 1000.0,
|
||||
"total_item_count": 100,
|
||||
"total_item_count": (
|
||||
BackgroundUpdater.MINIMUM_BACKGROUND_BATCH_SIZE
|
||||
),
|
||||
}
|
||||
},
|
||||
"enabled": True,
|
||||
|
@ -203,9 +206,11 @@ class BackgroundUpdatesTestCase(unittest.HomeserverTestCase):
|
|||
"current_updates": {
|
||||
"master": {
|
||||
"name": "test_update",
|
||||
"average_items_per_ms": 0.1,
|
||||
"average_items_per_ms": 0.001,
|
||||
"total_duration_ms": 1000.0,
|
||||
"total_item_count": 100,
|
||||
"total_item_count": (
|
||||
BackgroundUpdater.MINIMUM_BACKGROUND_BATCH_SIZE
|
||||
),
|
||||
}
|
||||
},
|
||||
"enabled": False,
|
||||
|
@ -230,9 +235,11 @@ class BackgroundUpdatesTestCase(unittest.HomeserverTestCase):
|
|||
"current_updates": {
|
||||
"master": {
|
||||
"name": "test_update",
|
||||
"average_items_per_ms": 0.1,
|
||||
"average_items_per_ms": 0.001,
|
||||
"total_duration_ms": 1000.0,
|
||||
"total_item_count": 100,
|
||||
"total_item_count": (
|
||||
BackgroundUpdater.MINIMUM_BACKGROUND_BATCH_SIZE
|
||||
),
|
||||
}
|
||||
},
|
||||
"enabled": False,
|
||||
|
@ -267,9 +274,11 @@ class BackgroundUpdatesTestCase(unittest.HomeserverTestCase):
|
|||
"current_updates": {
|
||||
"master": {
|
||||
"name": "test_update",
|
||||
"average_items_per_ms": 0.1,
|
||||
"average_items_per_ms": 0.001,
|
||||
"total_duration_ms": 2000.0,
|
||||
"total_item_count": 200,
|
||||
"total_item_count": (
|
||||
2 * BackgroundUpdater.MINIMUM_BACKGROUND_BATCH_SIZE
|
||||
),
|
||||
}
|
||||
},
|
||||
"enabled": True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue