-
Notifications
You must be signed in to change notification settings - Fork 24
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
Deadlock occuring randomly #69
Comments
btw, I removed |
Thank you for sharing what you've discovered. |
That's a typical issue with sylius in asyc environments. Each api request, that triggers Reason is that order consist of several tables and doctrine transaction is not longer enough to ensure data consistency. Solution is to wrap whole More on the topic |
The current solution is deprecated as it was created for Vue Storefront v1. For Vue Storefront 2 integration check out our GraphQL-based integration - https://github.com/BitBagCommerce/SyliusVueStorefront2Plugin |
Current behavior
It happens that deadlock occurs during standard operations in VSF. It is related to
Timestampable
which is trying to modifyupdated_at
of currently processed object.Expected behavior
Deadlocks should not happen.
Steps to reproduce the issue
It occurs during standard operations in VSF, just:
Suggested steps to fix the issue
doctrine_transaction
middleware in messengerThe text was updated successfully, but these errors were encountered: