-
Notifications
You must be signed in to change notification settings - Fork 5
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
Check the case that owner object is deleted before finalizer is added #209
Comments
@devloai resolve this issue |
Investigating the race condition between MySQL object deletion and finalizer addition - will implement proper safeguards to prevent orphaned resources. Status: Done. |
- Move finalizer handling to beginning of reconciliation loop - Add early check for deletion without finalizer - Ensure atomic finalizer addition with requeue - Separate finalizer addition from other operations Fixes #209
I've implemented a fix for this issue in PR #415. The solution addresses the race condition by:
The changes ensure that:
A reproduce script has been added to help test this scenario. Please review the PR for the detailed implementation. |
Example case:
The text was updated successfully, but these errors were encountered: