debian-mirror-gitlab/lib/gitlab/redis/cache.rb

18 lines
321 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
module Gitlab
module Redis
class Cache < ::Gitlab::Redis::Wrapper
2019-12-04 20:38:33 +05:30
CACHE_NAMESPACE = 'cache:gitlab'
2017-09-10 17:25:29 +05:30
2021-09-04 01:27:46 +05:30
private
2020-06-23 00:09:42 +05:30
2021-09-04 01:27:46 +05:30
def raw_config_hash
config = super
config[:url] = 'redis://localhost:6380' if config[:url].blank?
config
2017-09-10 17:25:29 +05:30
end
end
end
end