History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: QUARTZ-356
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Minor Minor
Assignee: James House
Reporter: Jasper Rosenberg
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Quartz Scheduler

Close InputStreams in DriverDelegates in finally block

Created: 06/Mar/06 02:25 PM   Updated: 24/Dec/07 01:30 AM
Component/s: Job Stores
Affects Version/s: 1.6, 1.5.2
Fix Version/s: 1.6


 Description  « Hide
Change this pattern:

obj = in.readObject();
            in.close();

to:
            try {
                obj = in.readObject();
            } finally {
                in.close();
            }

Also, close the InputStream in getMapFromProperties()

 All   Comments   Change History      Sort Order:
There are no comments yet on this issue.