We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0410820 commit c0ab946Copy full SHA for c0ab946
testsuites/sail/src/main/java/org/eclipse/rdf4j/testsuite/sail/SailConcurrencyTest.java
@@ -396,13 +396,17 @@ public void testConcurrentConnectionsShutdownReadCommitted() throws InterruptedE
396
}
397
store.shutDown();
398
399
- store.init();
+ try {
400
+ store.init();
401
- try (SailConnection connection = store.getConnection()) {
402
- connection.begin();
403
- long size = connection.size();
404
- assertEquals(0, size);
405
- connection.commit();
+ try (SailConnection connection = store.getConnection()) {
+ connection.begin();
+ long size = connection.size();
+ assertEquals(0, size);
406
+ connection.commit();
407
+ }
408
+ } catch (SailException ignored) {
409
+ // ignored
410
411
412
0 commit comments