为什么使用 Rack 和 Phusion Passenger 重新启动 Sinatra 应用程序后第一个请求会出现错误?

发布于 2024-07-13 22:42:14 字数 467 浏览 3 评论 0原文

在我触摸 tmp/restart.txt 并且我的应用程序重新启动后,第一个请求会抛出错误,通常是关于找不到 Haml::Engine 或其他一些 gem 的错误。 第二个和后续请求都工作正常。 我在运行 Rack 0.4.1 和 Sinatra 0.3.3 的 Dreamhost 上遇到了这个问题,但在转移到我自己的主机并运行更新的 Rack (0.9.1) 和 Sinatra (0.9.0.4) 后,我仍然看到这个问题。

如果您不知道确切的答案,但有关于如何找到答案的提示,请告诉我。

这是我的 config.ru:

require 'rubygems'
require 'sinatra'

disable :run
set :environment, :production
set :raise_errors, true

require 'app.rb'
run Sinatra::Application

After I touch tmp/restart.txt and my app restarts, the first request throws an error, usually something about not finding Haml::Engine or some other gem. The second and subsequent requests all work fine. I was having this problem on Dreamhost which was running Rack 0.4.1 and Sinatra 0.3.3 but after moving to my own host and running a newer Rack (0.9.1) and Sinatra (0.9.0.4) I still see the problem.

If you don't know the exact answer but have tips on how I could track it down, please let me know.

Here's my config.ru:

require 'rubygems'
require 'sinatra'

disable :run
set :environment, :production
set :raise_errors, true

require 'app.rb'
run Sinatra::Application

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一笑百媚生 2024-07-20 22:42:14

我会考虑确保您需要所有必要的宝石。 也许您执行此操作的顺序有一些问题导致它第一次失败。 您需要 ruby​​gems 吗?

如果您发布了应用程序的机架配置 (config.ru),也可能会有所帮助。

I'd look into making sure you're requiring all the necessary gems. Perhaps there's something about the order you're doing it that's causing it to fail the first time. Are you requiring rubygems?

It might also help if you posted your rack configuration for the app (config.ru).

埖埖迣鎅 2024-07-20 22:42:14

该错误是由于 Sinatra gem 加载太晚造成的。 这是解决方案:

#config.ru

ENV['GEM_HOME'] ||= `gem env path`.strip.split(':').first
ENV['GEM_PATH'] ||= `gem env path`.strip
Gem.clear_paths

require 'application-filename-goes-here'
set :environment, :production
run Sinatra::Application

The error is caused by the Sinatra gem loading too late. This is the solution:

#config.ru

ENV['GEM_HOME'] ||= `gem env path`.strip.split(':').first
ENV['GEM_PATH'] ||= `gem env path`.strip
Gem.clear_paths

require 'application-filename-goes-here'
set :environment, :production
run Sinatra::Application
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文