vincbeck commented on code in PR #61408:
URL: https://github.com/apache/airflow/pull/61408#discussion_r2760241598
##########
airflow-core/src/airflow/utils/sqlalchemy.py:
##########
@@ -50,15 +48,6 @@
log = logging.getLogger(__name__)
-try:
Review Comment:
Are you sure this is not used by providers?
##########
providers/postgres/tests/unit/postgres/hooks/test_postgres.py:
##########
@@ -544,10 +544,7 @@ def test_sqlalchemy_url(self):
conn = Connection(login="login-conn", password="password-conn",
host="host", schema="database")
hook = PostgresHook(connection=conn)
expected = "postgresql://login-conn:password-conn@host/database"
- if SQLALCHEMY_V_1_4:
Review Comment:
This is a provider, provider should still be runnable with SQLA (e.g. if the
Airflow version is 3.0)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]