-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A reconciler should not require the DSCI to perform cleanup action to…
… avoid deadlock When the common reconciler detect that a resource is amrked for deletion, it shoudl not try to lookup the DSCI as it should be possible to remove a resource even if the DSCI is not present to avoid deadlocks. To make the code more clear, the Reconcile method has been split in: - delete, which triggers the execution of the finalizer actions - apply, which triggers the execution od the reconcile actions Signed-off-by: Luca Burgazzoli <[email protected]>
- Loading branch information
1 parent
6636abb
commit 668a64d
Showing
3 changed files
with
63 additions
and
33 deletions.
There are no files selected for viewing
This file contains 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 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 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