kostiantyn-lab opened a new issue, #22810:
URL: https://github.com/apache/airflow/issues/22810

   ### Apache Airflow Provider(s)
   
   jira
   
   ### Versions of Apache Airflow Providers
   
   apache-airflow-providers-jira==2.0.1
   
   ### Apache Airflow version
   
   2.2.2
   
   ### Operating System
   
   Amazon Linux 2
   
   ### Deployment
   
   MWAA
   
   ### Deployment details
   
   _No response_
   
   ### What happened
   
   I've been trying to use the Jira Operator to create a Ticket from Airflow 
and use the JiraTicketSensor to check if the ticket was resolved. Creating the 
task works fine, but I can't get the Sensor to work.
   
   If I don't provide the method_name I get an error that it is required, if I 
provide it as None, I get an error saying the Task id has already been added to 
the DAG.
   
   ```text
   Broken DAG: [/usr/local/airflow/dags/jira_ticket_sensor.py] Traceback (most 
recent call last):
     File 
"/usr/local/lib/python3.7/site-packages/airflow/models/baseoperator.py", line 
553, in __init__
       task_group.add(self)
     File "/usr/local/lib/python3.7/site-packages/airflow/utils/task_group.py", 
line 175, in add
       raise DuplicateTaskIdFound(f"Task id '{key}' has already been added to 
the DAG")
   airflow.exceptions.DuplicateTaskIdFound: Task id 'jira_sensor' has already 
been added to the DAG
   ```
   
   ### What you think should happen instead
   
   _No response_
   
   ### How to reproduce
   
   use this dag
   
   ```python
   from datetime import datetime
   
   from airflow import DAG
   from airflow.providers.jira.sensors.jira import JiraTicketSensor
   
   with DAG(
       dag_id='jira_ticket_sensor',
       schedule_interval=None,
       start_date=datetime(2021, 1, 1),
       catchup=False
   ) as dag:
       jira_sensor = JiraTicketSensor(
           task_id='jira_sensor',
           jira_conn_id='jira_default',
           ticket_id='TEST-1',
           field='status',
           expected_value='Completed',
           method_name='issue',
           poke_interval=600
       )
   ```
   
   ### Anything else
   
   This error occurs every time
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


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