You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resque-web is mounted at /resque-web in routes file and I'm able to see it and on the live site on heroku as well as on my local maching, But it only has two queues one is Rollbar and other is default. It's not showing my active_job queues and and any info about working tasks and any task executed by active_job.
# resque.rb initializer
Resque.redis = Redis.current
Resque.before_fork do
defined?(ActiveRecord::Base) &&
ActiveRecord::Base.connection.disconnect!
end
Resque.after_fork do
defined?(ActiveRecord::Base) &&
ActiveRecord::Base.establish_connection
end
resque-web is mounted at /resque-web in routes file and I'm able to see it and on the live site on heroku as well as on my local maching, But it only has two queues one is Rollbar and other is default. It's not showing my active_job queues and and any info about working tasks and any task executed by active_job.
And
And my background_work.rb initializer
And my redis.rb
And my procfile
The text was updated successfully, but these errors were encountered: