#Eranga-error
1 messages ยท Page 1 of 1 (latest)
@glossy ingot there's documentation on this at https://stripe.com/docs/rate-limits#object-lock-timeouts
As for the object that was actually locked, if you have the req_xxx I might be able to find out, I've looked at this before
Let me check whether I can find the request ID
Is it logged in somewhere in Stripe? Because I cleared my logs ๐ฆ
Is it this req_iENoPfVHToKQP7
thanks; yeah it's in your screenshot, on the dashboard logs page
in this case it's a lock on the Customer object
checking maybe what else was happening at the time
Thank you, let me know if you find more information. In the meantime I had a glance through the document you sent. It seems like we can set a retry for 429 errors.
I added it like this
It was 2 in the documentation. Do you have a recomended value for this other than 2? ๐
it's up to your tolerance , with higher values the overall time it takes an API request to complete (like the function to return a value) can be longer, which might mean your UI spins for longer. Probably best to start with the default
so yeah you were confirming a PaymentIntent that was for the same customer at about the same time (As you said you're paying unpaid intents for them) so a lock error on the customer is not terribly unusual, best option is to retry yes.