Close connections in H2FullPrunedBlockStore

This commit is contained in:
Ximo Guanter 2014-06-26 15:25:47 +02:00
parent 736c4c9907
commit b6f61e8850

View File

@ -162,6 +162,7 @@ public class H2FullPrunedBlockStore implements FullPrunedBlockStore {
for (Connection conn : allConnections) {
try {
conn.rollback();
conn.close();
} catch (SQLException ex) {
throw new RuntimeException(ex);
}