summary refs log tree commit diff
path: root/changelog.d/14574.bugfix (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix logging context warnings due to common usage metrics setup (#14574)Sean Quah2022-11-281-0/+1
`setup()` is run under the sentinel context manager, so we wrap the initial update in a background process. Before this change, Synapse would log two warnings on startup: Starting db txn 'count_daily_users' from sentinel context Starting db connection from sentinel context: metrics will be lost Signed-off-by: Sean Quah <seanq@matrix.org>