-
Notifications
You must be signed in to change notification settings - Fork 419
asyncpg.create_pool fails with dsn with @ in password #436
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I'm still experiencing issues with this when a Note: I've replaced sensitive names in the following example # This does not work
await asyncpg.connect(
"postgresql://myapp:Password%23123@localhost:5432/myapp"
)
# This works
await asyncpg.connect(
user="myapp",
password="Password#123",
host="localhost",
port=5432,
database="myapp"
) Of course, not URL encoding the password doesn't work either as Kindest regards |
This should be fixed by #472 |
Awesome stuff, thank you so much! 😄 |
the issue with a local PostgreSQL install?:
uvloop?:
It leads to different errors
socket.gaierror
such as[Errno -2] Name or service not known
or[Errno -3] Temporary failure in name resolution
The text was updated successfully, but these errors were encountered: