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

Key: QB-1562
Type: Bug Bug
Status: Resolved Resolved
Resolution: Fixed
Priority: Major Major
Assignee: Unassigned
Reporter: Marek Baczynski
Votes: 0
Watchers: 0
Operations

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

Possible deadlock in DbStore.close()

Created: 26/Feb/13 02:29 PM   Updated: 27/Feb/13 03:44 PM
Component/s: None
Affects Version/s: 5.0.7
Fix Version/s: 5.0.9

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown
Environment: all


 Description  « Hide
connection.close() can throw an SQLException - if this happens, lock will not unlock:


public void close() {
if (logger.isDebugEnabled()) {
logger.debug("Closing database " + this + " and releasing lock");
}

try {
if (connection != null) {
connection.close(); // THROW HERE
connection = null;
}

if (lock != null) {
lock.unlock(); // ...unlock skipped
lock = null;
}

ConnectionCache.INSTANCE.remove(dbDir.getAbsolutePath(), mode, method);
} catch (SQLException e) {
throw Throwables.propagate(e);
}
}

 All   Comments   Work Log   Change History      Sort Order:
No work has yet been logged on this issue.