potiuk commented on code in PR #59957:
URL: https://github.com/apache/airflow/pull/59957#discussion_r2655379899


##########
airflow-core/src/airflow/cli/commands/connection_command.py:
##########
@@ -76,21 +85,42 @@ def connections_get(args):
         output=args.output,
         mapper=_connection_mapper,
     )
-
-
+@cli_utils.action_cli(
+    help="List all connections",
+    args=(
+        {
+            "name": "--show-values",
+            "action": "store_true",
+            "help": (
+                "Show sensitive values such as passwords and extras. "
+                "By default, sensitive values are hidden for security reasons."
+            ),
+        },
+    ),
+)
 @suppress_logs_and_warning
 @providers_configuration_loaded
 def connections_list(args):
     """List all connections at the command line."""
     with create_session() as session:
         query = select(Connection)
+<<<<<<< HEAD

Review Comment:
   You have some conflicts here.



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