Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid special symbols in passwords (#149)
Some special characters may cause issues in DB URI unless they are properly escaped. For example, the password "ab/cd" cannot be used directly in the URI postgresql://user:ab/cd@localhost/quay because netloc became "user:ab", while we want it to be "user:ab/cd@localhost".
- Loading branch information