Quarkus - Panache - Entity updates are not getting persisted #45661
Unanswered
gmuvvala-bss
asked this question in
Q&A
Replies: 2 comments 3 replies
-
/cc @FroMage (panache), @loicmathieu (panache) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Does this ring any bell @yrodiere @Sanne ? This sounds more like an ORM issue to me. @gmuvvala-bss any chance you can create a reproducer for this? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are using Quarkus Panache with AWS Aurora mysql in our application. We have simple db update as follows
Loan loan = Loan.findById(loanId.getValue());
loan.loanStatusTypeId = 100000;
loan.persist();
We found that some times this change is not getting persisted after transaction is committed . There is no error or transaction rollback. Updates to other entities made as part of the same transaction gets persisted successfully .
Few other points
Appreciate any help on this.
Beta Was this translation helpful? Give feedback.
All reactions