-
Notifications
You must be signed in to change notification settings - Fork 190
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
Enable panic recovery #859
Conversation
controllers/bucket_controller.go
Outdated
@@ -125,6 +125,7 @@ type BucketReconciler struct { | |||
type BucketReconcilerOptions struct { | |||
MaxConcurrentReconciles int | |||
RateLimiter ratelimiter.RateLimiter | |||
RecoverPanic bool |
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.
We no longer need to add this option as we don't make this configurable.
@Santosh1176 Along with the last requested change, can you please squash all the commits into a single commit? |
…anic instead of crashing the controller and Squashed commits. Signed-off-by: Santosh Kaluskar <[email protected]>
9af866a
to
1ad2f00
Compare
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.
LGTM
Thanks @Santosh1176 🏅
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.
LGTM! Thanks for working on it.
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.
LGTM
thanks for working on this @Santosh1176! 🙇
@stefanprodan @pjbgf @darkowlzz Thank you for the opportunity and guidance. |
Implements RecoverPanic option on reconcilers.
This is a part fixes to issue #2952
…
Signed-off-by: Santosh Kaluskar [email protected]