Skip to content

Commit

Permalink
[AIRFLOW-861] make pickle_info endpoint be login_required
Browse files Browse the repository at this point in the history
Testing Done:
- Unittests pass

Closes apache#2077 from saguziel/aguziel-fix-login-
required
  • Loading branch information
saguziel authored and aoen committed Feb 17, 2017
1 parent 28cfd2c commit 8d93c6b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions airflow/www/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -640,6 +640,7 @@ def headers(self):
return wwwutils.json_response(d)

@expose('/pickle_info')
@login_required
def pickle_info(self):
d = {}
dag_id = request.args.get('dag_id')
Expand Down

0 comments on commit 8d93c6b

Please sign in to comment.