amoghrajesh commented on code in PR #51873:
URL: https://github.com/apache/airflow/pull/51873#discussion_r2175354290
##########
airflow-core/src/airflow/cli/commands/connection_command.py:
##########
@@ -375,7 +375,8 @@ def connections_test(args) -> None:
raise SystemExit(1)
print("\nTesting...")
- status, message = conn.test_connection()
+ # TODO: Revisit this
+ status, message = conn.test_connection() # type: ignore
Review Comment:
I basically haven't made any change here, just to think a bit loud, this one
can use `Connection` from task SDK right?
Right now its not
--
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]