caploy 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
@@ -39,7 +39,7 @@ after_fork do |server, worker|
|
|
39
39
|
if defined?(Sidekiq)
|
40
40
|
Sidekiq.configure_client do |config|
|
41
41
|
<% if sidekiq_redis_url %>
|
42
|
-
config.redis = { :url => <%= sidekiq_redis_url
|
42
|
+
config.redis = { :url => '<%= sidekiq_redis_url %>', :size => <%= sidekiq_redis_count %> }
|
43
43
|
<% else %>
|
44
44
|
config.redis = { :size => <%= sidekiq_redis_count %> }
|
45
45
|
<% end %>
|
data/lib/caploy/version.rb
CHANGED