Fixed a MySQL Innodb table lock bug (#4493)
commita9ee96646edac0716bd09cdd06a6df94447c3fac
authorStephen Nielson <stephen@nielson.org>
Fri, 2 Jul 2021 04:32:32 +0000 (2 00:32 -0400)
committerGitHub <noreply@github.com>
Fri, 2 Jul 2021 04:32:32 +0000 (1 21:32 -0700)
treeb106646d6d77ac8430d58ac0d1e1a304fa33c31c
parent49179e818d87069ad1b9ac58cf111a1e10a6cfb7
Fixed a MySQL Innodb table lock bug (#4493)

If an exception is thrown in generating the UUIDs the tables were being
locked through an open transaction.  PHP did not have the Exception
class imported so SqlQueryException was not being caught, fatal error
occurred and the transaction was left open.

Fixing the import now lets the transaction be caught and then
rollbacked.
src/Common/Uuid/UuidRegistry.php