Replies: 1 comment
-
You can customize anything you want by including a module in an initializer. module PayJobQueue
extend ActiveSupport::Concern
included do
queue_as :low_priority
end
end
Pay::ApplicationJob.include PayJobQueue |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Pay jobs are always queued to
default
queue at the moment. I've encountered with a long delay in webhooks processing in case when there're a lot of jobs in this queue. It would be great to have an option to specify queue name in pay configuration to handle jobs priorityBeta Was this translation helpful? Give feedback.
All reactions