Issue:
using '#' in the password field of the URL causes pgweb to not connect.
'#' works when used in the "standard" connection method.
Bad Example:
postgres://pguser:pgpass###@localhost:5433/mydb?sslmode=disable <-- this causes pgweb to get confused as to where the host/port is in the url
Good Example:
postgres://pguser:pgpass@localhost:5433/mydb?sslmode=disable <--- this works
Issue: using '#' in the password field of the URL causes pgweb to not connect. '#' works when used in the "standard" connection method.
Bad Example: postgres://pguser:pgpass###@localhost:5433/mydb?sslmode=disable <-- this causes pgweb to get confused as to where the host/port is in the url
Good Example: postgres://pguser:pgpass@localhost:5433/mydb?sslmode=disable <--- this works
Pgweb v0.9.11 (git: c32784e8aebec35c1f68e11bc004f45dedbda283)