potiuk commented on a change in pull request #10498:
URL: https://github.com/apache/airflow/pull/10498#discussion_r475791804
##########
File path: airflow/www/views.py
##########
@@ -1049,21 +1102,22 @@ def trigger(self, session=None):
dr = DagRun.find(dag_id=dag_id, execution_date=execution_date,
run_type=DagRunType.MANUAL)
if dr:
+ # noinspection PyUnresolvedReferences
flash(f"This run_id {dr.run_id} already exists")
return redirect(origin)
run_conf = {}
- conf = request.values.get('conf')
- if conf:
+ the_conf = request.values.get('conf')
Review comment:
Yep.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]