File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,8 @@ def gatekeeper_client
27
27
def gatekeeper_pool
28
28
::Sidekiq ::RedisConnection . create (
29
29
url : config . redis_gatekeeper . url ,
30
- namespace : config . sidekiq . namespace
30
+ namespace : config . sidekiq . namespace ,
31
+ id : nil
31
32
)
32
33
end
33
34
Original file line number Diff line number Diff line change 14
14
Travis ::Notification . setup
15
15
16
16
Sidekiq . configure_server do |config |
17
- config . redis = Travis . config . redis . to_h . merge ( namespace : Travis . config . sidekiq . namespace )
17
+ config . redis = Travis . config . redis . to_h . merge ( namespace : Travis . config . sidekiq . namespace , id : nil )
18
18
end
19
19
20
20
Sidekiq . configure_client do |config |
21
- config . redis = Travis . config . redis . to_h . merge ( size : 1 , namespace : Travis . config . sidekiq . namespace )
21
+ config . redis = Travis . config . redis . to_h . merge ( size : 1 , namespace : Travis . config . sidekiq . namespace , id : nil )
22
22
end
You can’t perform that action at this time.
0 commit comments