Bastien Vaucher wrote:
> 
> I have exactly the same error, did you find a solution ?

Ok, solution found (http://dev.rubyonrails.org/ticket/9172)
I just changed

set :mongrel_conf,  "#{current_path}/config/mongrel_cluster.yml"

to

set(:mongrel_conf) { "#{current_path}/config/mongrel_cluster.yml" }

in my deploy.rb file

The other solution would be to place the "set :mongrel_conf" AFTER the 
"set :deploy_to" as the deploy_to has to be defined to provide a correct 
current_path, if not it's the default path that will be used 
("/u/apps/#{application}")

Hope this can help you.
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Deploying Rails" group.
To post to this group, send email to rubyonrails-deployment@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-deployment?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to