Close recorder database sessions before finalization - #125
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Production qualification run 33207241071 failed on hosted macOS after a live recorder trial completed.
finalize_capture_database()raisedsqlite3.OperationalError: database is lockedwhile changing the finished database from WAL back to the rollback journal.create_recording()left its setup SQLAlchemy session attached to the returnedRecording. Its pooled connection could remain open until cyclic garbage collection ran, so finalization could race that connection.What changed
create_recording()now detaches the returned model, closes the setup session, and disposes its engine before returning. Recorder writer functions also close their sessions and dispose the session engines infinallyblocks. This doesn't change persistence or lock-retry behavior. It releases recorder-owned connections before database finalization.The regression test creates a recording, finalizes it immediately without forcing garbage collection, and verifies that neither
recording.db-walnorrecording.db-shmremains.Verification
Candidate:
9519e160c1b410573e19ad03b77a1f97260c0b15