-
Notifications
You must be signed in to change notification settings - Fork 217
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
fix: refine retryAwareErrorLogging #2748
Conversation
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.
Thanks @shawkins. LGTM
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, thx!
Ok, I'll separate it. |
closes: operator-framework#2747 Signed-off-by: Steve Hawkins <[email protected]>
} else if (eventPresent || !retry.isLastAttempt()) { | ||
log.warn( | ||
"Uncaught error during event processing {} - but another reconciliation will be attempted" | ||
+ " because a superceding event has been recieved or another retry attempt is" |
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.
+ " because a superceding event has been recieved or another retry attempt is" | |
+ " because a superseding event has been received or another retry attempt is" |
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.
Done in #2755
A proposal to further refine the exception logging so that it uses INFO (mostly ignorable), WARN (may recover), ERROR (won't recover).
closes: #2747