Reputation: 12264
Is it possible to disable the airflow experimental API? I've searched through examples of airflow.cfg but didn't see anything there that would achieve it. Perhaps something can be done using auth_backend
but I'm not sure what.
Upvotes: 2
Views: 247
Reputation: 15931
Since Airflow 1.10.11, the experimental API denies all requests by default (See PR).
If you are running an older version of Airflow, you can set
auth_backend = airflow.api.auth.backend.deny_all
Upvotes: 2