-
Notifications
You must be signed in to change notification settings - Fork 299
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
Add support for REST plugins #1937
Conversation
String filename, | ||
long filesize) throws IOException, NoSuchAlgorithmException { | ||
|
||
logger.debug("uploadToDocumentService({}, {}, {}, {}, ...)", debug, simulate, id, index); |
Check notice
Code scanning / SonarCloud
Logging should not be vulnerable to injection attacks
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.
Fixed
It could cause a malicious injection
Quality Gate passedIssues Measures |
This PR adds the support for pl4j framework.
With 2 first implementations used within the REST Service. It allows to read a file from the local FS where FSCrawler is running in case for example one file has not been processed correctly while crawling the disk (see #805).
It also supports reading from an S3 repository (see related #263).
Closes #334
Closes #1114
Closes #1247