Update comments

This commit is contained in:
Till Faelligen 2023-10-31 13:55:17 +01:00
parent e7996edf65
commit 7d007533d0
No known key found for this signature in database
GPG key ID: ACCDC9606D472758
2 changed files with 3 additions and 3 deletions

View file

@ -325,7 +325,7 @@ user_api:
auto_join_rooms:
# - "#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.
# worker_count: 8

View file

@ -22,8 +22,8 @@ type UserAPI struct {
// be joined to the rooms listed under this option.
AutoJoinRooms []string `yaml:"auto_join_rooms"`
// The number of workers to start for the DeviceListUpdater.
// Setting this too low may result in the "InputDeviceListUpdate" growing forever.
// The number of workers to start for the DeviceListUpdater. Defaults to 8.
// This only needs updating if the "InputDeviceListUpdate" stream keeps growing indefinitely.
WorkerCount int `yaml:"worker_count"`
}