Remove the development_async environment
It's unused, and I'm just double-checking that it's not somehow causing the issues with the rails dev server not reloading classes. (The `threadsafe!` option would do that, but I don't thiiiink this is the env we're running? But I'm wondering if the loader is getting confused by the prefixiness of the name or something. Unlikely!)
This commit is contained in:
parent
740645a38b
commit
75602b949c
2 changed files with 1 additions and 30 deletions
|
@ -17,7 +17,7 @@ role :web, application
|
||||||
role :app, application, :memcached => true
|
role :app, application, :memcached => true
|
||||||
role :db, application, :primary => true
|
role :db, application, :primary => true
|
||||||
|
|
||||||
set :bundle_without, [:development, :test, :development_async]
|
set :bundle_without, [:development, :test]
|
||||||
|
|
||||||
set :rvm_ruby_string, 'ruby-1.9.3-p484' # Or whatever env you want it to run in.
|
set :rvm_ruby_string, 'ruby-1.9.3-p484' # Or whatever env you want it to run in.
|
||||||
set :rvm_type, :system
|
set :rvm_type, :system
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
OpenneoImpressItems::Application.configure do
|
|
||||||
# Settings specified here will take precedence over those in config/environment.rb
|
|
||||||
|
|
||||||
# In the development environment your application's code is reloaded on
|
|
||||||
# every request. This slows down response time but is perfect for development
|
|
||||||
# since you don't have to restart the webserver when you make code changes.
|
|
||||||
config.cache_classes = false
|
|
||||||
|
|
||||||
# Log error messages when you accidentally call methods on nil.
|
|
||||||
config.whiny_nils = true
|
|
||||||
|
|
||||||
# Show full error reports and disable caching
|
|
||||||
config.consider_all_requests_local = true
|
|
||||||
config.action_view.debug_rjs = true
|
|
||||||
config.action_controller.perform_caching = false
|
|
||||||
|
|
||||||
# Don't care if the mailer can't send
|
|
||||||
config.action_mailer.raise_delivery_errors = false
|
|
||||||
|
|
||||||
config.active_support.deprecation = :log
|
|
||||||
|
|
||||||
config.action_mailer.default_url_options[:host] = 'impress.dev.openneo.net'
|
|
||||||
|
|
||||||
config.threadsafe!
|
|
||||||
end
|
|
||||||
|
|
||||||
RemoteImpressHost = 'beta.impress.openneo.net'
|
|
||||||
|
|
||||||
USE_FIBER_POOL = true
|
|
Loading…
Reference in a new issue