From f278ea74c0d5419d860d8612bff131e2189c4401 Mon Sep 17 00:00:00 2001
From: Henrik Levkowetz <henrik@levkowetz.com>
Date: Mon, 26 Sep 2016 06:16:39 +0000
Subject: [PATCH] Undid an unintended commit (code change for test purposes)  -
 Legacy-Id: 12036

---
 ietf/settings.py | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/ietf/settings.py b/ietf/settings.py
index a4caac3f2..54a7ec1f6 100644
--- a/ietf/settings.py
+++ b/ietf/settings.py
@@ -716,11 +716,11 @@ if SERVER_MODE != 'production':
     # stomp out the cached template loader, it's annoying
     TEMPLATE_LOADERS = tuple(l for e in TEMPLATE_LOADERS for l in (e[1] if isinstance(e, tuple) and "cached.Loader" in e[0] else (e,)))
 
-#     CACHES = {
-#          'default': {
-#              'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
-#          }
-#     }
+    CACHES = {
+         'default': {
+             'BACKEND': 'django.core.cache.backends.dummy.DummyCache',
+         }
+    }
     SESSION_ENGINE = "django.contrib.sessions.backends.db"
 
     if 'SECRET_KEY' not in locals():