Skip to content
Snippets Groups Projects
Commit 8850a2ad authored by akwizgran's avatar akwizgran
Browse files

Merge branch 'non-reentrant-db-lock' into 'master'

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.

See merge request !127
parents 845d3fa4 7e3d3625
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment