Skip to content

Commit 9cec09e

Browse files
feat order_items_job.rb: task #32
back to attempt only 5 times.
1 parent 4b48256 commit 9cec09e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/jobs/order_items_job.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
class OrderItemsJob < ApplicationJob
22
queue_as :default
3-
retry_on StandardError, attempts: 20, wait: :exponentially_longer
3+
retry_on StandardError, attempts: 5, wait: :exponentially_longer
44

55
def perform(record)
66
return unless record.items.empty?

0 commit comments

Comments
 (0)