summary refs log tree commit diff
path: root/synapse/util/gai_resolver.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bump twisted from 22.10.0 to 23.8.0 (#16235)dependabot[bot]2023-09-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Bump twisted from 22.10.0 to 23.8.0 Bumps [twisted](https://github.com/twisted/twisted) from 22.10.0 to 23.8.0. - [Release notes](https://github.com/twisted/twisted/releases) - [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst) - [Commits](https://github.com/twisted/twisted/compare/twisted-22.10.0...twisted-23.8.0) --- updated-dependencies: - dependency-name: twisted dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Fix types * Fix lint * Newsfile --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Erik Johnston <erik@matrix.org>
* Add most missing type hints to synapse.util (#11328)Patrick Cloke2021-11-161-14/+61
|
* Move DNS lookups into separate thread pool (#11177)Erik Johnston2021-10-261-0/+136
This is to stop large bursts of lookups starving out other users of the thread pools. Fixes #11049.