Skip to content
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

Merged
merged 11 commits into from
Mar 10, 2025

Conversation

julianolm
Copy link
Contributor

@julianolm julianolm commented Feb 27, 2025

Fixes: #3532

Pull Request check-list

Please make sure to review and check all of these items:

  • Do tests and lints pass with this change?
  • Do the CI tests pass with this change (enable it first in your forked repo and wait for the github action build to finish)?
  • Is the new or changed code fully tested?
  • Is a documentation update included (if this change modifies existing APIs, or introduces new ones)?
  • Is there an example added to the examples folder (if applicable)?
  • Was the change added to CHANGES file?

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

@julianolm
Copy link
Contributor Author

@petyaslavova petyaslavova changed the title feat: adds option not to raise when leaving context manager after lock expiration feat: adds option not to raise exception when leaving context manager after lock expiration Feb 27, 2025
@petyaslavova
Copy link
Collaborator

Hi @julianolm, thank you for your contribution! Your change will be reviewed soon.

@petyaslavova
Copy link
Collaborator

Hi @julianolm, can you please check the reported errors from code linters?

@julianolm
Copy link
Contributor Author

Hey @petyaslavova , updated!!! Thanks!

@petyaslavova
Copy link
Collaborator

@julianolm you can run the linters locally - there are instructions in the contributing guide.
Instead of using the "invoke all-tests" command, you can just call "invoke linters" and you will see all reported errors and changes that are needed.

@julianolm
Copy link
Contributor Author

Oh, great. Sorry I missed it.
Now its ok.
Thanks again @petyaslavova

@julianolm
Copy link
Contributor Author

@petyaslavova wdyt?

@petyaslavova
Copy link
Collaborator

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.

Copy link
Collaborator

@petyaslavova petyaslavova left a 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.

@julianolm
Copy link
Contributor Author

Hey @petyaslavova thanks! Gonna address those today asap!

@julianolm
Copy link
Contributor Author

Hello, @petyaslavova . Sorry for the delay. Busy day at work today.

Requests addressed. I felt it was better to catch both LockNotOwnedError and LockError separetely just so we can log more precise warnings on each situation.

But I will leave an opened suggestion for a single catch (of parent class LockError) if you think it is better. Please feel free to commit or discard it.

Thanks again!

@julianolm
Copy link
Contributor Author

PS: I ran the tests with above suggestions applied and it works just fine as well

petyaslavova and others added 3 commits March 10, 2025 10:17
… 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>
@petyaslavova
Copy link
Collaborator

But I will leave an opened suggestion for a single catch (of parent class LockError) if you think it is better. Please feel free to commit or discard it.

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.

@petyaslavova
Copy link
Collaborator

But I will leave an opened suggestion for a single catch (of parent class LockError) if you think it is better. Please feel free to commit or discard it.

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 ...

@julianolm
Copy link
Contributor Author

Hello @petyaslavova linter problems solved

@petyaslavova petyaslavova merged commit 50943e0 into redis:master Mar 10, 2025
37 checks passed
@petyaslavova petyaslavova added the feature New feature label Apr 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature New feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Option not to raise when leaving context manager after lock expiration
4 participants