uranusjr commented on code in PR #27389:
URL: https://github.com/apache/airflow/pull/27389#discussion_r1011354319
##########
airflow/cli/commands/connection_command.py:
##########
@@ -269,7 +269,7 @@ def connections_add(args):
msg = msg.format(
conn_id=new_conn.conn_id,
uri=args.conn_uri
- or urlunparse(
+ or urlunsplit(
Review Comment:
I don’t think this works, `urlunparse` takes a six-item iterable, but
`urlunsplit` takes a five-item one. More review is needed.
--
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]