From 7b94e37c9535f1a00659cfc173dd64b1a6671be0 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Tue, 16 Jun 2015 17:43:02 -0400 Subject: [PATCH] Clarify why we use features.BILLING as the feature flag on the route --- endpoints/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/web.py b/endpoints/web.py index 110e145a2..34300bce7 100644 --- a/endpoints/web.py +++ b/endpoints/web.py @@ -229,7 +229,7 @@ def endtoend_health(): @web.route('/health/dbrevision', methods=['GET']) -@route_show_if(features.BILLING) +@route_show_if(features.BILLING) # Since this is only used in production. @no_cache def dbrevision_health(): # Find the revision from the database.