Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add lock on order when processing payment intent succeeded #10452

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

hdiniz
Copy link
Contributor

@hdiniz hdiniz commented Nov 6, 2024

No description provided.

@hdiniz hdiniz self-assigned this Nov 6, 2024
Comment on lines 251 to 259
if (order) {
await order.update({
data: previousOrderData,
});
}

if (sequelizeTransaction) {
sequelizeTransaction.rollback();
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two things here:

  1. Should we rather rollback before we update?
  2. It looks like we may end up calling rollback on an already commited transaction (e.g. if createOrUpdateOrderStripePaymentMethod fails). What would be the effect of that?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. You're right, its best to put that rollback first to avoid deadlocking.
  2. sequelizeTransaction is set to null right after its committed so this would be skipped.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants