From b82ee46301b6dad751dce7f6fd9b071796c0607c Mon Sep 17 00:00:00 2001 From: sairamreddy3048 Date: Wed, 27 Sep 2017 15:17:04 +0530 Subject: [PATCH] Update development.rb Perform caching should be enabled for storing in the cache as per your tutorial. --- episode-321/store-after/config/environments/development.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episode-321/store-after/config/environments/development.rb b/episode-321/store-after/config/environments/development.rb index 2497828..9b715ad 100644 --- a/episode-321/store-after/config/environments/development.rb +++ b/episode-321/store-after/config/environments/development.rb @@ -11,7 +11,7 @@ # Show full error reports and disable caching config.consider_all_requests_local = true - config.action_controller.perform_caching = false + config.action_controller.perform_caching = true # Don't care if the mailer can't send config.action_mailer.raise_delivery_errors = false