DEV: allow queue_jobs = false in dev

your mileage may vary
This commit is contained in:
Sam 2017-10-31 13:48:47 +11:00
parent d15068da70
commit 7c5a71e929

View File

@ -200,8 +200,14 @@ module Jobs
# Otherwise execute the job right away # Otherwise execute the job right away
opts.delete(:delay_for) opts.delete(:delay_for)
opts[:sync_exec] = true opts[:sync_exec] = true
if Rails.env == "development"
Scheduler::Defer.later("job") do
klass.new.perform(opts) klass.new.perform(opts)
end end
else
klass.new.perform(opts)
end
end
end end