mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-06 14:33:10 -06:00
Update comments
This commit is contained in:
parent
e7996edf65
commit
7d007533d0
|
|
@ -325,7 +325,7 @@ user_api:
|
||||||
auto_join_rooms:
|
auto_join_rooms:
|
||||||
# - "#main:matrix.org"
|
# - "#main:matrix.org"
|
||||||
|
|
||||||
# The number of device list updater workers to start. Defaults to 8.
|
# The number of workers to start for the DeviceListUpdater. Defaults to 8.
|
||||||
# This only needs updating if the "InputDeviceListUpdate" stream keeps growing indefinitely.
|
# This only needs updating if the "InputDeviceListUpdate" stream keeps growing indefinitely.
|
||||||
# worker_count: 8
|
# worker_count: 8
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,8 +22,8 @@ type UserAPI struct {
|
||||||
// be joined to the rooms listed under this option.
|
// be joined to the rooms listed under this option.
|
||||||
AutoJoinRooms []string `yaml:"auto_join_rooms"`
|
AutoJoinRooms []string `yaml:"auto_join_rooms"`
|
||||||
|
|
||||||
// The number of workers to start for the DeviceListUpdater.
|
// The number of workers to start for the DeviceListUpdater. Defaults to 8.
|
||||||
// Setting this too low may result in the "InputDeviceListUpdate" growing forever.
|
// This only needs updating if the "InputDeviceListUpdate" stream keeps growing indefinitely.
|
||||||
WorkerCount int `yaml:"worker_count"`
|
WorkerCount int `yaml:"worker_count"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue