-
-
Notifications
You must be signed in to change notification settings - Fork 357
Add ability to break parking lots, stop locks from stalling #3081
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
3bd67a5
initial implementation of lot breaking
jakkdl 4dfa1ad
fix import cycle
jakkdl 543a087
fix re-export for verifytypes visibility
jakkdl c36cdad
update docstrings
jakkdl 127c5fc
fixes after review by TeamSpen210
jakkdl 1f75d44
add tests
jakkdl 6835e87
add lock handover test
jakkdl 3b86e80
clean up breaker dict
jakkdl 94ff9a2
clean up GLOBAL_PARKING_LOT_BREAKER when task releases or exits
jakkdl eb7a451
add newsfragments, add StalledLockError, reraise BrokenResourceError …
jakkdl e7d7205
add test for default argument of break_lot
jakkdl c89fb2a
Merge branch 'main' into break_the_lot
jakkdl 277c7da
various fixes after review
jakkdl 21cf0d6
Merge remote-tracking branch 'origin/main' into break_the_lot
jakkdl 45f78f4
break lots before other checks, minor phrasing improvement in docstring
jakkdl ec48863
docstring updates after A5rocks review
jakkdl c742a52
Merge branch 'main' into break_the_lot
jakkdl 7a1ce5b
raise brokenresourceerror if registering an already exited task. fix …
jakkdl cc97cca
remove warning on task exit
jakkdl b81e297
Merge remote-tracking branch 'origin/main' into break_the_lot
jakkdl 1d7ece3
make broken_by attribute a list, clean up tests
jakkdl b826210
Merge branch 'main' into break_the_lot
jakkdl 92f9799
fix test. polish comments and tests
jakkdl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
:class:`trio.Lock` and :class:`trio.StrictFIFOLock` will now raise :exc:`trio.BrokenResourceError` when :meth:`trio.Lock.acquire` would previously stall due to the owner of the lock exiting without releasing the lock. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Added :func:`trio.lowlevel.add_parking_lot_breaker` and :func:`trio.lowlevel.remove_parking_lot_breaker` to allow creating custom lock/semaphore implementations that will break their underlying parking lot if a task exits unexpectedly. :meth:`trio.lowlevel.ParkingLot.break_lot` is also added, to allow breaking a parking lot intentionally. |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.