mirror of
https://github.com/Fishwaldo/huginn.git
synced 2025-03-16 11:51:43 +00:00
Unified background worker initialization into pre_runner_boot Set Rails.configuration.cache_classes = true for background workers
9 lines
No EOL
349 B
Ruby
9 lines
No EOL
349 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
# This process is used to maintain Huginn's upkeep behavior, automatically running scheduled Agents and
|
|
# periodically propagating and expiring Events. It also running TwitterStreamAgents and Agents that support long running
|
|
# background jobs.
|
|
|
|
require_relative './pre_runner_boot'
|
|
|
|
AgentRunner.new(except: DelayedJobWorker).run |