-
Notifications
You must be signed in to change notification settings - Fork 857
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
Output sql_insert with postgres fails if password contains { character #3230
Comments
Hey @TunaYagci you need to URL escape passwords in the dsn. |
You mean escaping the url in my local and using that value in the configuration, right? Assuming I have dsl config like:
And I escape the password in my local like:
so I replaced my dsn like:
this solves the
Can I escape the password directly in the config somehow? I thought DSN field doesn't support interpolation. |
DSN does not support interpolation and at the moment it is not possible to apply these transformations at the moment for secret values either. |
mine was a network issue, it got resolved now. I think it would be nice if this URL escape detail is mentioned in the docs. thanks for the help! |
Hey there, if the password contains
{
character,sql_insert
for postgres driver fails with:tested with the latest docker container
The text was updated successfully, but these errors were encountered: