Skip to content

[FIX] Fix write lock errors

Ricardo Melo requested to merge fix-write-lock-errors into master

[FIX] Sometimes, processes updating the SQLite DB were dying because could not acquire the write lock. The SHARED lock in sqllite for select queries is only released when PDOStatement gets destroyed, and all SHARED locks need to be clear before acquiring the write lock.

Merge request reports