mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-01 12:24:28 +01:00
handle sync old coupons on stripe
This commit is contained in:
parent
427ba1a74b
commit
e8c5c49bd0
@ -29,7 +29,11 @@ class SyncObjectsOnStripeWorker
|
||||
logger.debug "#{index} / #{total}"
|
||||
Stripe::Coupon.retrieve(coupon.code, api_key: Setting.get('stripe_secret_key'))
|
||||
rescue Stripe::InvalidRequestError
|
||||
begin
|
||||
Stripe::Service.new.create_coupon(coupon.id)
|
||||
rescue Stripe::InvalidRequestError => e
|
||||
logger.warn "Unable to create coupon #{coupon.code} on stripe: #{e}"
|
||||
end
|
||||
end
|
||||
|
||||
w = StripeWorker.new
|
||||
|
Loading…
Reference in New Issue
Block a user