Skip to content

Commit

Permalink
views: skip force_https on /ping
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiaraBi authored and Krzysztof Nowak committed May 4, 2018
1 parent 79123f2 commit ef3ed98
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions asclepias_broker/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
from .errors import PayloadValidationRESTError
from .models import Identifier

#
# UI Views
#

# TODO: we need this blueprint in order to run
# asclepias_broker.tasks.process_event
blueprint = Blueprint('asclepias_ui', __name__, template_folder='templates')
Expand All @@ -31,6 +35,9 @@ def ping():
return 'OK'


ping.talisman_view_options = {'force_https': False}


#
# REST API Views
#
Expand Down

0 comments on commit ef3ed98

Please sign in to comment.