mirror of
https://github.com/discourse/discourse.git
synced 2025-06-01 09:08:10 +08:00
DEV: Change use of Redis flushall
to flushdb
.
FLUSHALL removes all keys from all databases. Instead we only want to remove keys from the current Redis database.
This commit is contained in:
@ -5,7 +5,7 @@ require "email/processor"
|
||||
|
||||
describe Email::Processor do
|
||||
after do
|
||||
Discourse.redis.flushall
|
||||
Discourse.redis.flushdb
|
||||
end
|
||||
|
||||
let(:from) { "foo@bar.com" }
|
||||
|
Reference in New Issue
Block a user