We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
From Ada Logics
In the Image-automation reconciler an issue is present where the code continues after an error occurs, leading to undefined behaviour:
image-automation-controller/controllers/imageupdateautomation_controller.go
Lines 204 to 211 in 674f833
The problem is that the failWithError branch does not itself return from the reconcile function and the code should instead be return failWithError
failWithError
Recommendation
Change the code to return failWithError
The text was updated successfully, but these errors were encountered:
Fixed in 5a831a8.
Sorry, something went wrong.
No branches or pull requests
From Ada Logics
image-automation-controller/controllers/imageupdateautomation_controller.go
Lines 204 to 211 in 674f833
The text was updated successfully, but these errors were encountered: