作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Heroku 计划作业,应该每 10 分钟运行一次。它只是向 Controller 的操作发出 HTTP GET 请求,该操作执行某些操作。
desc "This task is called by the Heroku scheduler add-on"
task :send_notifications => :environment do
response = HTTParty.get('http://sendnotificationapp.com/sms/send_notifications')
end
heroku rake send_notifications
Starting process with command `send_notifications` by scheduler@addons.heroku.com
Starting process with command `send_notifications`
bash: send_notifications: command not found
Process exited with status 127
最佳答案
听起来您将 Heroku 调度程序作业设置为 send_notifications
, 而不是 rake send_notifications
或 bundle exec rake send_notifications
.
关于Heroku 预定作业返回 'command not found' 但使用耙子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13423712/
我是一名优秀的程序员,十分优秀!