You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Set self.engine = None after dispose in _release_engine (gitar-bot):
prevents close() from leaving a dangling disposed-engine reference
that would produce a confusing pool error on accidental later access.
- _FakeSource now has close() and is wrapped in a fixture that cleans
up its checked-out connection (Copilot #1): avoids resource warnings
and an interfering fairy across test teardown.
- Rewrite test_generator_survives_engine_dispose_mid_iteration as
test_generator_survives_connection_close_mid_iteration (Copilot #2):
Engine.dispose() does not close checked-out connections, so the old
test did not reproduce what _release_engine actually does. The real
regression is the explicit conn.close() on the fairy in
_connection_map before dispose. The new test closes the connection
mid-iteration, which is what fetchall() needs to survive.
- Switch the query in _FakeSource.get_database_names_raw and the
seeded INSERT assertions to the TEXT name column (Copilot #3):
_execute_database_query is typed Iterable[str]; testing on integer
ids obscured the actual contract.
- Update test_disposes_pool to assert surrogate.engine is None after
release (follows from the new self.engine = None behavior) and
verify the original pool's checkedout() is 0.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
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.
Describe your changes:
Fixes
I worked on ... because ...
Type of change:
Checklist:
Fixes <issue-number>: <short explanation>