4

我遇到了 Clockwork 调度程序进程的语法问题。我实际上遇到了与此线程中讨论的问题类似的问题,但从未完全回答(如何使用 Rails 发条 gem 运行 rake 任务?

当我使用“heroku rake send_notifications”对其进行测试时,我的“scheduler.rake”工作正常。我的 clock.rb 进程也在工作,因为它将每 30 秒触发一次。但是,在我的“rake.scheduler”中正确运行“send_notifications”任务时,clock.rb 的语法存在问题。这是它的样子:

# scheduler.rake
desc "This task is called by the Heroku scheduler add-on"
task :send_notifications => :environment do

   puts "this test is working correctly!"

end

下面是clock.rb 的样子:

require File.expand_path('../../config/boot',        __FILE__)
require File.expand_path('../../config/environment', __FILE__)
require 'clockwork'

include Clockwork

every(30.seconds, 'Send notifications') {
   # Heroku::API.new.post_ps('pocket-pal', 'rake scheduler:send_notifications')
    rake scheduler:send_notifications
}

如您所见,我尝试使用 Heroku API 并调用 rake 进行分离进程。

当我使用 Heroku API 时,我得到这个错误:

ERROR -- : uninitialized constant Heroku (NameError)

当我调用 rake 时,出现以下错误:

ERROR -- : undefined local variable or method `send_notifications' for main:Object (NameError)

有谁知道这两种方法的正确语法是什么?

4

2 回答 2

6

这个答案有效,但是您需要完全遵循其字符串语法 所以在你的情况下:

every(30.seconds, 'Send Notifications') {
  `rake scheduler:send_notifications`
}

这意味着确保` `用于包装 rake 任务,而不是" "因为这会绊倒一些人。

于 2015-03-30T06:54:25.287 回答
0

Hereko 关于实现发条的文档可能会有所帮助

带有 Clockwork 的 Ruby 中的计划作业和自定义时钟进程

于 2013-09-27T10:51:17.210 回答