summaryrefslogtreecommitdiff
path: root/lib/tasks
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2016-03-09 15:16:46 +0100
committerJacob Vosmaer <contact@jacobvosmaer.nl>2016-03-09 15:16:46 +0100
commitc46e6eff104891ca4e404605ad3bf302a3aad9c7 (patch)
tree36552d841679239cad915ddbb2e2721d89f8a962 /lib/tasks
parent500337c4b23700a30876c6d2f8e7c612f8114432 (diff)
downloadgitlab-ce-c46e6eff104891ca4e404605ad3bf302a3aad9c7.tar.gz
Parse config/resque.yml in one place only
Diffstat (limited to 'lib/tasks')
-rw-r--r--lib/tasks/cache.rake6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tasks/cache.rake b/lib/tasks/cache.rake
index f221afcf73a..51e746ef923 100644
--- a/lib/tasks/cache.rake
+++ b/lib/tasks/cache.rake
@@ -4,16 +4,16 @@ namespace :cache do
desc "GitLab | Clear redis cache"
task :clear => :environment do
- redis_store = Rails.cache.instance_variable_get(:@data)
+ redis = Redis.new(url: Gitlab::RedisConfig.url)
cursor = REDIS_SCAN_START_STOP
loop do
- cursor, keys = redis_store.scan(
+ cursor, keys = redis.scan(
cursor,
match: "#{Gitlab::REDIS_CACHE_NAMESPACE}*",
count: CLEAR_BATCH_SIZE
)
- redis_store.del(*keys) if keys.any?
+ redis.del(*keys) if keys.any?
break if cursor == REDIS_SCAN_START_STOP
end