-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
feat: adds option not to raise exception when leaving context manager after lock expiration #3531
Conversation
Hi @julianolm, thank you for your contribution! Your change will be reviewed soon. |
Hi @julianolm, can you please check the reported errors from code linters? |
Hey @petyaslavova , updated!!! Thanks! |
@julianolm you can run the linters locally - there are instructions in the contributing guide. |
Oh, great. Sorry I missed it. |
@petyaslavova wdyt? |
Hi @julianolm, you have conflicting change with the current master code and small change requested. Once these are resolved, we are ready to merge your change. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The requested changes are in a previously posted comment.
Hey @petyaslavova thanks! Gonna address those today asap! |
Co-authored-by: Aarni Koskela <akx@iki.fi>
Hello, @petyaslavova . Sorry for the delay. Busy day at work today. Requests addressed. I felt it was better to catch both But I will leave an opened suggestion for a single catch (of parent class Thanks again! |
PS: I ran the tests with above suggestions applied and it works just fine as well |
… one except statement as LockError. Co-authored-by: Juliano Amadeu <65794514+julianolm@users.noreply.github.com>
Co-authored-by: Juliano Amadeu <65794514+julianolm@users.noreply.github.com>
I left one warning - in case you just want to print a warning instead of failing, I don't think having different detailed messages will be so important. |
@julianolm And now unfortunately, linters are failing ... |
Hello @petyaslavova linter problems solved |
Fixes: #3532
Pull Request check-list
Please make sure to review and check all of these items:
NOTE: these things are not required to open a PR and can be done
afterwards / while the PR is open.
Description of change
I was having trouble using async locks with the context manager because it was failing when exiting the context manager after timeout had expired (even if my code executed successfully).
I would really like not to raise a
LockNotOwnedError
in the exit of the context manager (if I try to release a lock and it was already "released" then great!).I understand just changing the behavior would be critical, so I added an option to just behave this way when desired instead.
Issue: #3532