-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Cherry-pick QueryLogger #9681 #9689
base: 0.28.3-cc-docker-ksql.129.x
Are you sure you want to change the base?
Cherry-pick QueryLogger #9681 #9689
Conversation
* fix: use QueryLogger for logging queries * anonymize processed queries * logging for unparsable queries * anonymized query handling logs * anonymized received queries * anonymized streaming query * checkstyle * prevent exception from querylogger * don't include statement text in exception message * don't include statement text in exception messages * fix tests * fix tests * fix tests * checkstyle * checkstyle * fix parser test * fix tests * checkstyle * restore ability to print errors in CLI * checkstyle * checkstyle * fix error code * One more fix for RestoreCommandsCompactor * Fix style bug Co-authored-by: Alan Sheinberg <[email protected]>
@@ -74,12 +74,20 @@ def _parse_changelog_with_duplicates(filename, release=None): | |||
|
|||
## verify header | |||
if _is_header(line): | |||
print('line {0} is header'.format(line)) |
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.
@vpapavas does this file need to change?
@Override | ||
public String toString() { | ||
return buildMessage(rawMessage, "<retracted>"); | ||
} |
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.
@AlanConfluent @vpapavas Does this need to be in the final PR?
|
Description
Cherry-pick #9681
There were some conflicts, I addressed by removing code that is not available in 0.28.
Testing done
Describe the testing strategy. Unit and integration tests are expected for any behavior changes.
Reviewer checklist