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
First of all, thanks a lot for providing this awesome lib. Really appreciate it! 🙏🏽
In my recent attempt to deploy the API on k8s, I encountered a Postgres error and the reason being the password containing special characters. A simple fix is to import from urllib.parse import quote and wrap quote(self.postgres_pass) in stac_fastapi/pgstac/stac_fastapi/pgstac/config.py.
I'm happy to make a subsequent PR - if folks here think it's valuable.
Cheers,
Prayag
The text was updated successfully, but these errors were encountered:
Hello!
First of all, thanks a lot for providing this awesome lib. Really appreciate it! 🙏🏽
In my recent attempt to deploy the API on k8s, I encountered a Postgres error and the reason being the password containing special characters. A simple fix is to import
from urllib.parse import quote
and wrapquote(self.postgres_pass)
instac_fastapi/pgstac/stac_fastapi/pgstac/config.py
.I'm happy to make a subsequent PR - if folks here think it's valuable.
Cheers,
Prayag
The text was updated successfully, but these errors were encountered: