1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00

fix unnasigned instance variable warnings

This commit is contained in:
Max Spransy 2012-02-09 09:16:54 -06:00
parent 41e69fe723
commit 166d256b45

View file

@ -27,7 +27,7 @@ module Sidekiq
end
def self.url
ENV['REDISTOGO_URL'] || @url
ENV['REDISTOGO_URL'] || (@url = nil)
end
def self.namespace=(namespace)