Details
-
Bug
-
Resolution: Fixed
-
Major
-
None
-
Security Level: Public Data (This ticket is visible to anyone on the internet and will be indexed by search engines)
-
None
Description
Python DB API issues an implicit BEGIN on the first query of a connection. The BEGIN is implicit, but the closing (rollback or commit) is not.
Combined with the default isolation level 'REPEATABLE-READ', causes trouble, since jobs that do exists are not yet seen by other connections since they remain in an open transaction.
It seems base.py:36 is either not being executed, or it is not rolling back implicit begins.