fix: prevent URL encoding in postgres placeholder display (#6438)

This commit is contained in:
Lory
2025-11-14 11:17:17 -05:00
committed by GitHub
parent 930c92365d
commit 1cf7e37ada

View File

@@ -75,15 +75,7 @@ class PostgresProvider(AbstractDBProvider, BaseSettings):
if self.POSTGRES_URL_OVERRIDE:
return "Postgres Url Overridden"
return str(
PostgresDsn.build(
scheme="postgresql",
username="******",
password="******",
host=f"{self.POSTGRES_SERVER}:{self.POSTGRES_PORT}",
path=f"{self.POSTGRES_DB or ''}",
)
)
return f"postgresql://******:******@{self.POSTGRES_SERVER}:{self.POSTGRES_PORT}/{self.POSTGRES_DB or ''}"
def db_provider_factory(provider_name: str, data_dir: Path, env_file: Path, env_encoding="utf-8") -> AbstractDBProvider: