Open dtuite opened 11 years ago
I am also having this issue. For me I have a password with an @ in it. What is the proper way to escape such passwords?
This S.O. do the trick http://stackoverflow.com/a/22978703/2116850
Use %40
instead of @
and %23
for #
can someone close this issue?
Bit of a weird problem here. Basically I'm trying to setup a taps server so I can pull the contents of a PG database over HTTP.
The password for the database is constructed like this (notice the
#
character):123456#abc
.Whenever I try to start the server with
I get a
URI::InvalidURIError
The fact that the error only quotes the password up as far as the
#
character makes me think that this char is triggering the error. Is there some way I can escape it so it doesn't choke?