Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-06-10 18:10:14 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-06-10 18:10:14 +0300
commitbe1b7b709e957f83b076d05c9672ab2ab5ff1940 (patch)
tree2390764106c8fb6152340565e47124889bb279a1 /spec/support/redis.rb
parentc68905777ea271aea120a58d2d1246e84aea4264 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support/redis.rb')
-rw-r--r--spec/support/redis.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/support/redis.rb b/spec/support/redis.rb
index 8539f202602..eeeb93fa811 100644
--- a/spec/support/redis.rb
+++ b/spec/support/redis.rb
@@ -30,4 +30,12 @@ RSpec.configure do |config|
redis_queues_cleanup!
end
+
+ config.around(:each, :clean_gitlab_redis_trace_chunks) do |example|
+ redis_trace_chunks_cleanup!
+
+ example.run
+
+ redis_trace_chunks_cleanup!
+ end
end