[AIRFLOW-861] make pickle_info endpoint be login_required Testing Done: - Unittests pass
Closes #2077 from saguziel/aguziel-fix-login- required Project: http://git-wip-us.apache.org/repos/asf/incubator-airflow/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-airflow/commit/ff0fa00d Tree: http://git-wip-us.apache.org/repos/asf/incubator-airflow/tree/ff0fa00d Diff: http://git-wip-us.apache.org/repos/asf/incubator-airflow/diff/ff0fa00d Branch: refs/heads/v1-8-test Commit: ff0fa00d82bfebbe9b2b9ff957e4d77db0891e7f Parents: 1017008 Author: Alex Guziel <[email protected]> Authored: Fri Feb 17 11:45:45 2017 -0800 Committer: Bolke de Bruin <[email protected]> Committed: Sun Mar 12 08:14:26 2017 -0700 ---------------------------------------------------------------------- airflow/www/views.py | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-airflow/blob/ff0fa00d/airflow/www/views.py ---------------------------------------------------------------------- diff --git a/airflow/www/views.py b/airflow/www/views.py index 0391775..bda4921 100644 --- a/airflow/www/views.py +++ b/airflow/www/views.py @@ -640,6 +640,7 @@ class Airflow(BaseView): return wwwutils.json_response(d) @expose('/pickle_info') + @login_required def pickle_info(self): d = {} dag_id = request.args.get('dag_id')
