Index: Tools/GardeningServer/internal_alerts.py |
diff --git a/Tools/GardeningServer/internal_alerts.py b/Tools/GardeningServer/internal_alerts.py |
index 75992dc5bce710b1cde5fa68a295358f91a84d11..5410e4e9ce93e4d3cabccb5ba7999e01d021baad 100644 |
--- a/Tools/GardeningServer/internal_alerts.py |
+++ b/Tools/GardeningServer/internal_alerts.py |
@@ -11,7 +11,7 @@ |
class InternalAlertsHandler(alerts.AlertsHandler): |
- INTERNAL_ALERTS_TYPE = 'internal-alerts' |
+ MEMCACHE_INTERNAL_ALERTS_KEY = 'internal-alerts' |
# Has no 'request' member. |
# Has no 'response' member. |
@@ -37,10 +37,10 @@ |
return |
super(InternalAlertsHandler, self).get_from_memcache( |
- InternalAlertsHandler.INTERNAL_ALERTS_TYPE) |
+ InternalAlertsHandler.MEMCACHE_INTERNAL_ALERTS_KEY) |
def post(self): |
- self.update_alerts(InternalAlertsHandler.INTERNAL_ALERTS_TYPE) |
+ self.update_alerts(InternalAlertsHandler.MEMCACHE_INTERNAL_ALERTS_KEY) |
app = webapp2.WSGIApplication([ |