Displaying 1 result from an estimated 1 matches for "db_config_fil".
Did you mean:
db_config_file
2008 May 04
3
Rails Configuration in Workers
...s'' configuration options in my project, like:
config.database_configuration_file = "#{RAILS_ROOT}/local/config/
database.yml"
But they aren''t picked up in BackgroundRB because Rails ActiveRecord
is just initialized directly in MasterWorker#load_rails_env:
db_config_file = YAML.load(ERB.new(IO.read("#{RAILS_HOME}/
config/database.yml")).result)
Is this an intentional design decision, or just simplest approach
tha''s "good enough?" Personally, I''d prefer that my Rails'' environment
was initialized the same way in m...