在 rufus 调度程序中调用 rake 任务
我正在尝试在调度程序中运行 rake 任务,如下所示,
scheduler = Rufus::Scheduler.new
scheduler.start
schedule.schedule(chron) do
puts "in scheduler"
begin
ENV['RAILS_ENV']='production'
Rake::Task['connection'].invoke
rescue Exception => e
puts "error"
end
rake 任务仅在第一次执行。但调度程序似乎在给定的时间间隔内运行。
任何帮助表示赞赏。
I am trying to run a rake task inside a scheduler like below
scheduler = Rufus::Scheduler.new
scheduler.start
schedule.schedule(chron) do
puts "in scheduler"
begin
ENV['RAILS_ENV']='production'
Rake::Task['connection'].invoke
rescue Exception => e
puts "error"
end
the rake task is executed only for the first time. but the scheduler seem to be running in the given interval.
Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Rake 是一个依赖处理器。除非您另有说明,否则它只会运行一次任务。请参阅http://rake.rubyforge.org/classes/Rake/Task.html# M000115 您需要
Rake is a dependency processor. It runs a task only once unless you tell it otherwise. See http://rake.rubyforge.org/classes/Rake/Task.html#M000115 You need to