mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 02:41:13 +08:00
DEV: Properly flush DistributedMemoizer
in spec.
- $redis.flushall may hide state leak from other tests.
This commit is contained in:
@ -46,6 +46,11 @@ class DistributedMemoizer
|
||||
"memoize_" << key
|
||||
end
|
||||
|
||||
# Used for testing
|
||||
def self.flush!
|
||||
$redis.scan_each(match: "memoize_*").each { |key| $redis.del(key) }
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
def self.get_lock(redis, redis_lock_key)
|
||||
|
Reference in New Issue
Block a user