diff --git a/ingestion/src/metadata/ingestion/source/presto.py b/ingestion/src/metadata/ingestion/source/presto.py index 08e4eb364b9..0d9462c8bf9 100644 --- a/ingestion/src/metadata/ingestion/source/presto.py +++ b/ingestion/src/metadata/ingestion/source/presto.py @@ -28,6 +28,7 @@ class PrestoConfig(SQLConnectionConfig): url += f"{quote_plus(self.username)}" if self.password: url += f":{quote_plus(self.password.get_secret_value())}" + url += "@" url += f"{self.host_port}" url += f"/{self.catalog}" if self.database: