Im trying to use amqp on a ruby application that runs over passenger and nginx.
I have a file in the initializer folder which has the following:
if defined?(PhusionPassenger)
PhusionPassenger.on_event(:starting_worker_process) do |forked|
require 'eventmachine'
require 'amqp'
if forked
Rails.logger.info "[AMQP] Initializing amqp..."
... initialize amqp gem code here
end
else
Rails.logger.info "--"*30
Rails.logger.info "no passenger"
end
The thing is that even that the application is running and I am able of seing the site... I keep getting getting this on my logger
Rails.logger.info "--"*30
Rails.logger.info "no passenger"
And the amqp thread is not started.
Any clues?