dstandish commented on issue #33442: URL: https://github.com/apache/airflow/issues/33442#issuecomment-1817228790
For this problem, what are the actual connection attrs we are trying to encode? For example, this code produces no errors: ``` from airflow.models.connection import Connection c = Connection(conn_type="jdbc", host="postgres://abc123", schema="my_schema", login="my_login", password="my_pass", port=1234) uri = c.get_uri() c2 = Connection(uri=uri) assert c.conn_type == c2.conn_type assert c.host == c2.host assert c.login == c2.login assert c.password == c2.password assert c.port == c2.port ``` -- 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]
