VeereshPatil commented on issue #21:
URL:
https://github.com/apache/airflow-client-python/issues/21#issuecomment-1425257059
you can not pass **dag_id** and **external_trigger** as part of DagRun (
dag_id is passed in post_dag_run() function)
The following worked for me,
```
dag_run = DAGRun(
dag_run_id='some_test_run',
conf={"key":"values"}
)
api_response = dag_run_api_instance.post_dag_run(dag_id, dag_run)
```
--
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]