我遇到了 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)
有谁知道这两种方法的正确语法是什么?