Skip to content

Commit

Permalink
SqlAlchemy url as string
Browse files Browse the repository at this point in the history
  • Loading branch information
dfalbel committed Apr 24, 2024
1 parent df2bf8a commit 564d6b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ class SQLAlchemyConnection(Connection):
def __init__(self, conn):
self.conn: sqlalchemy.Engine = conn
self.display_name = f"SQLAlchemy ({conn.name})"
self.host = conn.url
self.host = conn.url.render_as_string()
self.type = "SQLAlchemy"

def list_objects(self, path: List[ObjectSchema]):
Expand Down

0 comments on commit 564d6b3

Please sign in to comment.