You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
taps server postgres://localdbuser:localdbpass@localhost/dbname httpuser httppassword
I get a URI::InvalidURIError
URI::InvalidURIError -> the scheme postgres does not accept registry part: localdbuser:123456 (or bad hostname?)
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?
The text was updated successfully, but these errors were encountered:
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?The text was updated successfully, but these errors were encountered: