mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 10:33:51 +08:00
DEV: Properly flush DistributedMemoizer
in spec.
- $redis.flushall may hide state leak from other tests.
This commit is contained in:
parent
8745f78277
commit
72d14a11ab
|
@ -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)
|
||||
|
|
|
@ -9,7 +9,7 @@ describe StaticController do
|
|||
before { FinalDestination.stubs(:lookup_ip).returns("1.2.3.4") }
|
||||
|
||||
after do
|
||||
$redis.flushall
|
||||
DistributedMemoizer.flush!
|
||||
end
|
||||
|
||||
it 'returns the default favicon for a missing download' do
|
||||
|
|
Loading…
Reference in New Issue
Block a user