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?

link|improve this question

The problem with this was because of passengers version... Engineyard was not using the latest version because it was in beta, then when we made the change, it worked. – chopi321 Sep 23 '11 at 12:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.