amoghrajesh commented on issue #49881:
URL: https://github.com/apache/airflow/issues/49881#issuecomment-3232188832

   @MaksYermak this has been fixed in one of the patch releases (3.0.4) likely 
and it works as expected on main too:
   
   ```
   conn = Connection(
       conn_id='test_conn',
       conn_type='postgres',
       host='localhost',
       port=5432,
       login='user',
       password='pass',
       extra='{"ssl": true}'
   )
   conn.get_uri()
   Out[4]: 
'postgres://user:pass@localhost:5432/?__extra__=%7B%22ssl%22%3A+true%7D'
   ```
   
   Closing this issue in that favour. Request you to consume the latest patch 
release for Airflow 3 (3.0.5/3.0.6) and it should work


-- 
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]

Reply via email to