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:
authorGabriel Mazetto <gabriel@gitlab.com>2016-05-11 05:58:06 +0300
committerGabriel Mazetto <gabriel@gitlab.com>2016-05-13 10:46:56 +0300
commitf5a0ac0fc197bae2eb5fe1045ed237cdbbaf6ea4 (patch)
tree29c89f80adc403185f931966d49c67f830be842b /lib/gitlab/redis.rb
parent311fb58c44fe6dd14709c8eb8f9346ec73e03aff (diff)
Codestyle: make sure we have space around operators
Diffstat (limited to 'lib/gitlab/redis.rb')
-rw-r--r--lib/gitlab/redis.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gitlab/redis.rb b/lib/gitlab/redis.rb
index f7db7a6391c..40766f35f77 100644
--- a/lib/gitlab/redis.rb
+++ b/lib/gitlab/redis.rb
@@ -25,7 +25,7 @@ module Gitlab
end
@pool.with { |redis| yield redis }
end
-
+
def self.redis_store_options
url = new.url
redis_config_hash = ::Redis::Store::Factory.extract_host_options_from_uri(url)
@@ -40,10 +40,10 @@ module Gitlab
def initialize(rails_env=nil)
rails_env ||= Rails.env
config_file = File.expand_path('../../../config/resque.yml', __FILE__)
-
+
@url = "redis://localhost:6379"
if File.exist?(config_file)
- @url =YAML.load_file(config_file)[rails_env]
+ @url = YAML.load_file(config_file)[rails_env]
end
end
end