Dong-yeong0 commented on code in PR #47709: URL: https://github.com/apache/airflow/pull/47709#discussion_r1993741775
########## airflow/models/connection.py: ########## @@ -256,6 +256,9 @@ def get_uri(self) -> str: if self.conn_type: uri = f"{self.conn_type.lower().replace('_', '-')}://" + if self.conn_type == "postgres": + driver = self.extra_dejson.get("postgres_driver", "postgres") + uri = uri.replace("postgres://", f"{driver}://", 1) Review Comment: I appreciate your suggestion 👍 It helped me learn something new, and I have updated (876ea6f8f432220f6c46b042b3b281b36ea13661) the documentation accordingly. -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org