Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ruby-on-rails/57.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ruby on rails 在heroku cedar上部署ruby on rails时出错_Ruby On Rails_Ruby_Ruby On Rails 3_Deployment_Heroku - Fatal编程技术网

Ruby on rails 在heroku cedar上部署ruby on rails时出错

Ruby on rails 在heroku cedar上部署ruby on rails时出错,ruby-on-rails,ruby,ruby-on-rails-3,deployment,heroku,Ruby On Rails,Ruby,Ruby On Rails 3,Deployment,Heroku,我在部署时似乎遇到了真正的问题,我不太确定错误以及是什么触发了它。一切似乎都在本地使用生产模式以及工作。请帮助我理解此错误并部署我的应用程序 现在,我删除了.git文件夹,创建了一个新的cedar应用程序,然后再试一次,但像往常一样出现了一些错误。但是,这次的错误看起来不同。我的gem文件和最近的heroku日志如下 Gemfile source 'https://rubygems.org' gem 'rails', '3.2.2' group :test, :development do

我在部署时似乎遇到了真正的问题,我不太确定错误以及是什么触发了它。一切似乎都在本地使用生产模式以及工作。请帮助我理解此错误并部署我的应用程序

现在,我删除了.git文件夹,创建了一个新的cedar应用程序,然后再试一次,但像往常一样出现了一些错误。但是,这次的错误看起来不同。我的gem文件和最近的heroku日志如下

Gemfile

source 'https://rubygems.org'
gem 'rails', '3.2.2'
group :test, :development do
  gem 'sqlite3'
  gem 'rspec-rails'
  gem 'factory_girl'
  gem 'spork'
  gem 'annotate', :git => "https://github.com/ctran/annotate_models.git"
end

group :production do
  gem 'pg'
  gem 'thin'
end
group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'uglifier', '>= 1.0.3'
  gem 'haml'
end
gem 'jquery-rails'
gem 'heroku'
最近的日志

2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/connection.rb:38:in `receive_data'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/bin/thin:6:in `<top (required)>'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/bin/thin:19:in `load'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/bin/thin:19:in `<main>'
2012-04-18T13:59:38+00:00 app[web.1]: Completed 500 Internal Server Error in 128ms
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_view/lookup_context.rb:109:in `find'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/instrumentation.rb:39:in `render'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/callbacks.rb:17:in `process_action'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/rendering.rb:45:in `process'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:56:in `call'
2012-04-18T13:59:38+00:00 app[web.1]: Processing by PagesController#home as HTML
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/server.rb:159:in `start'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_view/renderer/template_renderer.rb:29:in `determine_template'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/base.rb:167:in `process_action'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications.rb:123:in `block in instrument'
2012-04-18T13:59:38+00:00 app[web.1]: 
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal.rb:246:in `block in action'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.2/lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_view/renderer/renderer.rb:36:in `render_template'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/rendering.rb:10:in `process_action'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/static.rb:61:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/connection.rb:80:in `block in pre_process'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:67:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/controllers/controller.rb:86:in `start'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/railties-3.2.2/lib/rails/rack/logger.rb:26:in `call_app'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:245:in `fetch'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/connection.rb:78:in `pre_process'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/runner.rb:151:in `run!'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_view/path_set.rb:58:in `find'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2012-04-18T13:59:38+00:00 app[web.1]: ):
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/rendering.rb:103:in `render_to_body'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_view/renderer/template_renderer.rb:10:in `render'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.2/lib/active_record/railties/controller_runtime.
rb:18:in `process_action'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:68:in `block in call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.2/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:81:in `run_callbacks'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/base.rb:121:in `process'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:56:in `each'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/rendering.rb:16:in `render'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/rendering.rb:88:in `render'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/flash.rb:242:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/runtime.rb:17:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:205:in `context'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_support/callbacks.rb:81:in `run_callbacks'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/railties-3.2.2/lib/rails/application.rb:220:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activerecord-3.2.2/lib/active_record/query_cache.rb:64:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal/rescue.rb:29:in `process_action'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal.rb:203:in `dispatch'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/routing/route_set.rb:594:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/cookies.rb:338:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/railties-3.2.2/lib/rails/engine.rb:479:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/eventmachine-0.12.10/lib/eventmachine.rb:256:in `run_machine'
2012-04-18T13:59:38+00:00 app[web.1]: 
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/eventmachine-0.12.10/lib/eventmachine.rb:256:in `run'
2012-04-18T13:59:38+00:00 app[web.1]: 
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:136:in `forward'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/connection.rb:78:in `catch'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor
/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/runner.rb:185:in `run_command'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/railties-3.2.2/lib/rails/railtie/configurable.rb:30:in `method_missing'
2012-04-18T13:59:38+00:00 app[web.1]:   vendor/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/backends/base.rb:61:in `start'
2012-04-18T13:59:38+00:00 app[web.1]: cache: [GET /] miss
2012-04-18T13:59:38+00:00 app[web.1]: cache: [GET /favicon.ico] miss, store
2012-04-18T13:59:38+00:00 heroku[router]: GET k6skrd.herokuapp.com/favicon.ico dyno=web.1 queue=0 wait=0ms service=7ms status=200 bytes=0
2012-04-18T14:01:49+00:00 heroku[web.1]: State changed from up to bouncing
2012-04-18T14:01:49+00:00 heroku[web.1]: State changed from bouncing to created
2012-04-18T14:01:49+00:00 heroku[web.1]: State changed from created to starting
2012-04-18T14:01:51+00:00 heroku[web.1]: Stopping process with SIGTERM
2012-04-18T14:01:57+00:00 heroku[web.1]: Starting process with command `bundle exec thin start -R config.ru -e production -p 13819`
2012-04-18T14:01:59+00:00 app[web.1]: DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will be removed in Rails 4.0. Move them out and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/* and config/initializers/myplugin.rb. See the release notes for more on this: http://weblog.rubyonrails.org/2012/01/04/rails-3-2-0-rc2-has-been-released. (called from <top (required)> at /app/config/environment.rb:5)
2012-04-18T14:01:59+00:00 app[web.1]: DEPRECATION WARNING: You have Rails 2.3-style plugins in vendor/plugins! Support for these plugins will be removed in Rails 4.0. Move them out and bundle them in your Gemfile, or fold them in to your app as lib/myplugin/* and config/initializers/myplugin.rb. See the release notes for more on this: http://weblog.rubyonrails.org/2012/01/04/rails-3-2-0-rc2-has-been-released. (called from <top (required)> at /app/config/environment.rb:5)
2012-04-18T14:02:01+00:00 heroku[web.1]: Error R12 (Exit timeout) -> Process failed to exit within 10 seconds of SIGTERM
2012-04-18T14:02:01+00:00 heroku[web.1]: Stopping process with SIGKILL
2012-04-18T14:02:03+00:00 heroku[web.1]: Process exited with status 137
2012-04-18T14:02:03+00:00 app[web.1]: >> Thin web server (v1.3.1 codename Triple Espresso)
2012-04-18T14:02:03+00:00 app[web.1]: >> Maximum connections set to 1024
2012-04-18T14:02:03+00:00 app[web.1]: >> Listening on 0.0.0.0:13819, CTRL+C to stop
2012-04-18T14:02:04+00:00 heroku[web.1]: State changed from starting to up
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/connection.rb:38:in'receive_data'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/thin-1.3.1/bin/thin:6:in`'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/bin/thin:19:在“加载”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/bin/thin:19:in`'
2012-04-18T13:59:38+00:00应用程序[web.1]:在128ms内完成500个内部服务器错误
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u查看/查找上下文。rb:109:在“查找”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u控制器/metal/compatibility.rb:50:在“渲染到主体”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/捆绑包/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u控制器/金属/仪器。rb:39:在“渲染”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract\u controller/callbacks.rb:17:in'process\u action'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract_controller/rendering.rb:45:在“进程”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/捆绑包/ruby/1.9.1/gems/journey-1.0.3/lib/journey/router.rb:56:in'call'
2012-04-18T13:59:38+00:00应用程序[web.1]:由PagesController#home以HTML格式处理
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/session/abstract/id.rb:200:in'call'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u调度/中间件/callbacks.rb:27:in'call'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/lock.rb:15:in'call'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/server.rb:159:in'start'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u视图/呈现器/template\u呈现器。rb:29:在“确定模板”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_控制器/metal/instrumentation.rb:40:in“渲染中的块(2层)”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract\u controller/base.rb:167:在“过程\操作”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active_-support/notifications.rb:123:“仪器中的块”中
2012-04-18T13:59:38+00:00应用程序[网站1]:
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action_controller/metal.rb:246:在“块在运行”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/activerecord-3.2.2/lib/active\u record/connection\u adapters/abstract/connection\u pool.rb:443:in'call'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u视图/渲染器/渲染器。rb:36:在“渲染器模板”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active\u support/core\u ext/benchmark.rb:5:在“ms中的块”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/捆绑包/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u控制器/金属/渲染。rb:10:in'process\u action'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/activesupport-3.2.2/lib/active\u-support/notifications/instrumenter.rb:20:in'instrument'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u dispatch/middleware/show\u exceptions.rb:56:in'call'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u dispatch/middleware/static.rb:61:in'call'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/connection.rb:80:“预处理中的块”
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/捆绑包/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u调度/路由/路由设置。rb:67:在“呼叫”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/rack-1.4.1/lib/rack/etag.rb:23:in'call'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u调度/中间件/回调。rb:28:in'block in call'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/controllers/controller.rb:86:在“开始”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/捆绑包/ruby/1.9.1/gems/railties-3.2.2/lib/rails/rack/logger.rb:26:in'call_app'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/rack-cache-1.2/lib/rack/cache/context.rb:245:在'fetch'中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/connection.rb:78:in'pre_process'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/thin-1.3.1/lib/thin/runner.rb:151:in'run!'
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u view/path\u set.rb:58:在“查找”中
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/action\u控制器/metal/renderers.rb:28:“渲染到主体”
2012-04-18T13:59:38+00:00应用程序[web.1]:):
2012-04-18T13:59:38+00:00应用程序[web.1]:供应商/bundle/ruby/1.9.1/gems/actionpack-3.2.2/lib/abstract\u controller/rendering.rb:103:在“呈现到主体”中
2012-04-18T13:59:38+00:00