alltej
alltej

Reputation: 7285

Cannot pause or unpause a DAG in Airflow UI

I am facing an issue in Airflow UI where I cannot pause or unpause a DAG. I see this 400 error in browser network console. This seem to just happen in recent build of Airflow. I've been using version 1.10.10.

jquery-latest.js:2 POST https://localhost:8080/paused?is_paused=true&dag_id=test_dag 400

Upvotes: 1

Views: 1136

Answers (1)

kaxil
kaxil

Reputation: 18844

Try downgrading the version of Flask-Appbuilder to 2.3.2

pip install -U "Flask-AppBuilder==2.3.2"

Related Github issues:

Upvotes: 1

Related Questions