This is an automated email from the ASF dual-hosted git repository.

jedcunningham pushed a commit to branch v2-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 6649584c77b2888860875831a3df60e607a156af
Author: Kamil BreguĊ‚a <[email protected]>
AuthorDate: Sat Oct 23 01:32:00 2021 +0200

    Add TriggererJob to jobs check command (#19179)
    
    (cherry picked from commit d3ac01052bad07f6ec341ab714faabed913169ce)
---
 airflow/cli/cli_parser.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/cli/cli_parser.py b/airflow/cli/cli_parser.py
index 85687a4..64cc582 100644
--- a/airflow/cli/cli_parser.py
+++ b/airflow/cli/cli_parser.py
@@ -725,7 +725,7 @@ ARG_NAMESPACE = Arg(
 # jobs check
 ARG_JOB_TYPE_FILTER = Arg(
     ('--job-type',),
-    choices=('BackfillJob', 'LocalTaskJob', 'SchedulerJob'),
+    choices=('BackfillJob', 'LocalTaskJob', 'SchedulerJob', 'TriggererJob'),
     action='store',
     help='The type of job(s) that will be checked.',
 )

Reply via email to