-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
[PRD-6159] - upgrading the poi, commons-io, commons-compiler jars and… #9442
base: master
Are you sure you want to change the base?
Conversation
… upgraded the code accordingly
SonarQube Quality Gate Maintainability Rating on New Code (is worse than A) See analysis details on SonarQube Fix issues before they fail your Quality Gate with SonarLint in your IDE. |
Note:Frogbot also supports Contextual Analysis, Secret Detection, IaC and SAST Vulnerabilities Scanning. This features are included as part of the JFrog Advanced Security package, which isn't enabled on your system. |
|
@@ -691,6 +694,11 @@ public void prepareNextOutputFile() throws KettleException { | |||
// In that case, one needs to initialize it later, after writing header/template, because | |||
// SXSSFWorkbook can't read/rewrite existing data, only append. | |||
data.wb = new XSSFWorkbook( inputStream ); | |||
// As the file is being created and the rows are being initialized, | |||
// so there will be no read and re-write operation for the first time, creating SXSSFWorkbook |
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.
There will be if you are writing over a template, hence the test failures.
… upgraded the code accordingly