1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #37101 from eugeneius/active_job_sidekiq_integration_tests

Fix Active Job Sidekiq integration tests
This commit is contained in:
Ryuta Kamizono 2019-09-02 07:01:44 +09:00 committed by GitHub
commit f5943abcd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View file

@ -389,7 +389,7 @@ GEM
ffi (~> 1.0)
rdoc (6.0.4)
redcarpet (3.2.3)
redis (4.1.1)
redis (4.1.2)
redis-namespace (1.6.0)
redis (>= 3.0.4)
regexp_parser (1.6.0)
@ -448,10 +448,11 @@ GEM
sequel (5.14.0)
serverengine (2.0.7)
sigdump (~> 0.2.2)
sidekiq (5.2.3)
connection_pool (~> 2.2, >= 2.2.2)
rack-protection (>= 1.5.0)
redis (>= 3.3.5, < 5)
sidekiq (6.0.0)
connection_pool (>= 2.2.2)
rack (>= 2.0.0)
rack-protection (>= 2.0.0)
redis (>= 4.1.0)
sigdump (0.2.4)
signet (0.11.0)
addressable (~> 2.3)

View file

@ -36,7 +36,7 @@ module SidekiqJobsManager
$stderr.sync = true
logfile = Rails.root.join("log/sidekiq.log").to_s
Sidekiq::Logging.initialize_logger(logfile)
Sidekiq.logger = Sidekiq::Logger.new(logfile)
self_read, self_write = IO.pipe
trap "TERM" do