Don't allow reentrant transactions.
The database's transaction lock is reentrant, meaning that a thread that's already holding the lock can acquire it again. This would allow a thread that already has a transaction in progress to start another transaction, which could cause transaction isolation issues and/or lock timeouts on the database's internal locks. Check that the current thread isn't already holding the lock when starting a transaction.
Showing
- briar-core/src/org/briarproject/db/DatabaseComponentImpl.java 5 additions, 2 deletions...r-core/src/org/briarproject/db/DatabaseComponentImpl.java
- briar-tests/src/org/briarproject/db/DatabaseComponentImplTest.java 50 additions, 0 deletions...ts/src/org/briarproject/db/DatabaseComponentImplTest.java
Loading
Please register or sign in to comment