#crypto Boy

1 messages · Page 1 of 1 (latest)

gaunt sandBOT
rain bridge
#

Hi 👋 that error is run into when a request tries to access an object that is still locked due to a previous request for it still executing.

Guidance for avoiding that error are included in the error message. If you're seeing this frequently, you need to put more delay between requests trying to access the same object.

frigid sage
#

so i need to ask the merchant to send the new stripe link ro confirm the payment?

rain bridge
#

I'm not sure I'm following

frigid sage
#

ser i tried already with some other card so thats the problem ?its getting frm yesterday

rain bridge
#

Sorry I'm not grasping how a card you tried yesterday impacts the object lock behavior you're describing.

gaunt sandBOT
rain bridge
#

Object lock errors like that are thrown when you try to access an object that is currently locked by another request. For instance, imagine a scenario where you made a request to update a Customer, and then immediately made another request to update that same Customer. The first update request needs to be finished and its changes need to be saved before the next update request can begin, so the second request is blocked by the lock the first request has on the Customer object.