MagicStack / asyncpg

A fast PostgreSQL Database Client Library for Python/asyncio.
Apache License 2.0
6.88k stars 399 forks source link

gssapi: use hostbased_service name type #1167

Closed eltoder closed 2 months ago

eltoder commented 2 months ago

This is used by libpq and allows us to skip canonicalization of host name, which was making a blocking DNS lookup.

Similarly, don't canonicalize host name for SSPI, since this is not done by libpq.

elprans commented 2 months ago

Thanks!