aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorGeorge Claghorn <george.claghorn@gmail.com>2018-04-15 00:03:46 -0400
committerGitHub <noreply@github.com>2018-04-15 00:03:46 -0400
commitd472229f1fb76f73b6bc678191057a554ce52f51 (patch)
tree68aaec5a206fb7371d3cf2c41cd53aa6df1bd0b8 /activesupport/lib
parentf9440ee361b5cfd1d2cf0c69201cf5d1960532fb (diff)
parent92db9e46f8dced015a236f073187e4ea50c7e13c (diff)
downloadrails-d472229f1fb76f73b6bc678191057a554ce52f51.tar.gz
rails-d472229f1fb76f73b6bc678191057a554ce52f51.tar.bz2
rails-d472229f1fb76f73b6bc678191057a554ce52f51.zip
Merge pull request #32573 from chloerei/fix-redis-store-clear-namespace
Fix redis store clear keys outside the namespace
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/cache/redis_cache_store.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache/redis_cache_store.rb b/activesupport/lib/active_support/cache/redis_cache_store.rb
index a1cb6db25d..74f935e02e 100644
--- a/activesupport/lib/active_support/cache/redis_cache_store.rb
+++ b/activesupport/lib/active_support/cache/redis_cache_store.rb
@@ -286,7 +286,7 @@ module ActiveSupport
# Failsafe: Raises errors.
def clear(options = nil)
failsafe :clear do
- if namespace = merged_options(options)[namespace]
+ if namespace = merged_options(options)[:namespace]
delete_matched "*", namespace: namespace
else
redis.with { |c| c.flushdb }