Net::SFTP 在 resque 中不断抛出错误

发布于 2024-11-18 06:04:25 字数 584 浏览 3 评论 0原文

我正在运行 Rails 3.1rc4 并在我的 resque 队列中不断遇到此错误消息

未初始化的常量 Net::SFTP 例外情况是“NameError”

在我的 gemfile 中我已包含:

gem 'net-sftp'
gem 'net-ssh'
gem 'net-scp'

我包含 net-scp,只是如果它是一个依赖项。我已经使用直接 ruby​​ 在 Rails 和 Redis 外部测试了我的 resque 任务,其中我需要“net/ssh”和“net/sftp”。整个事情进行得很顺利。然而,同一个 resque 任务不断抛出未初始化的常量 Net::SFTP。当我注释掉 Net::SSH 部分之前的 sftp 部分时,我最终得到了类似的错误。

未初始化的常量 Net::SSH

我是否需要更改 gemfile 中的某些内容或在我的 resque 类中需要这些 gem?为什么我必须在 ruby​​ 中使用“net/ssh”,而在 Rails 中的 gemfile 中必须使用“net-ssh”?

提前致谢!

I am running rails 3.1rc4 and keep running into this error message in my resque queues

uninitialized constant Net::SFTP With the exception "NameError"

In my gemfile I have included:

gem 'net-sftp'
gem 'net-ssh'
gem 'net-scp'

I included net-scp, just in case it was a dependency. I have tested my resque task externally of rails and redis with straight ruby, in which I required 'net/ssh' and 'net/sftp'. The whole thing worked perfectly. However the same resque task continually throws the uninitialized constant Net::SFTP. When I comment out the sftp section that comes before the Net::SSH section, I end up getting a similar error.

uninitialized constant Net::SSH

Do I need to change something in my gemfile or require these gems in my resque class? Why do I have to use 'net/ssh' in ruby while I have to use 'net-ssh' in my gemfile in rails?

Thanks in advance!

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

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

发布评论

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

评论(1

情绪 2024-11-25 06:04:25

您是否在 rake 任务中加载了环境?

task "resque:setup" => :environment do
  # you can leave this blank
end

默认情况下,Resque 独立运行。如果您需要它来访问应用程序包加载的内容,则需要加载环境。

Have you loaded the environment in your rake task?

task "resque:setup" => :environment do
  # you can leave this blank
end

Resque, by default, runs standalone. If you need it to access things that are loaded by the app bundle, you need to load the environment.

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