Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
func
  • Loading branch information
dwai1714 committed Dec 7, 2018
commit f2b0dd47b707e544c32315ba7d00dd4c5b51a7bb
2 changes: 1 addition & 1 deletion blueprints/airflow_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def get_dag_run(dag_run_id):
# However in the dashboard the main dag will show that as a failure. Adding the dag_name will resolve this

@airflow_api_blueprint.route('/dags/dag_runs/', methods=['GET'])
def get_dag_run():
def get_dag_run_with_dag():
session = settings.Session()
run_id=request.args.get('run_id')
dag_id=request.args.get('dag_id')
Expand Down