[
https://issues.apache.org/jira/browse/LUCENE-829?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Doron Cohen resolved LUCENE-829.
--------------------------------
Resolution: Fixed
Fix Version/s: 2.2
Lucene Fields: [Patch Available] (was: [New])
Commited the fix for this.
There were actually two more cases like this.
Thanks Karl!
> StandardBenchmarker#makeDocument does not explicitly close opened files
> -----------------------------------------------------------------------
>
> Key: LUCENE-829
> URL: https://issues.apache.org/jira/browse/LUCENE-829
> Project: Lucene - Java
> Issue Type: Bug
> Reporter: Karl Wettin
> Assigned To: Doron Cohen
> Fix For: 2.2
>
> Attachments: LUCENE-829.patch
>
>
> StandardBenchmarker#makeDocument(File in, String[] tags, boolean stored,
> boolean tokenized, boolean tfv)
> BufferedReader reader = new BufferedReader(new FileReader(in));
> Above reader is not closed until GC hits it. Can cause problems in cases
> where ulimit is set too low.
> I did this:
> while ((line = reader.readLine()) != null)
> {
> body.append(line).append(' ');
> }
> + reader.close();
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]