This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-2-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit e92201d04b8836b82f23d022cfdfb442281e0f31 Author: Malthe Borch <mbo...@gmail.com> AuthorDate: Sat Jan 29 16:10:23 2022 +0000 A trigger might use a connection; make sure we mask passwords (#21207) (cherry picked from commit 3d0c1aea5a85a4d31d3ade530e4c5b85b045503a) --- airflow/cli/commands/triggerer_command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/airflow/cli/commands/triggerer_command.py b/airflow/cli/commands/triggerer_command.py index 40b1b0e..110ff4f 100644 --- a/airflow/cli/commands/triggerer_command.py +++ b/airflow/cli/commands/triggerer_command.py @@ -30,6 +30,7 @@ from airflow.utils.cli import setup_locations, setup_logging, sigint_handler, si @cli_utils.action_logging def triggerer(args): """Starts Airflow Triggerer""" + settings.MASK_SECRETS_IN_LOGS = True print(settings.HEADER) job = TriggererJob(capacity=args.capacity)