Description
@Override
public void tearDownCluster() {
String dropped = "";
for (DocumentMK kernel : kernels) {
kernel.dispose();
if (kernel.getDocumentStore() instanceof RDBDocumentStore)
}
if (dropDBAfterTest) {
if(blobStoreFixture != null)
if (dropped.isEmpty())
{ throw new RuntimeException("dropdb was set, but tables have not been dropped"); } }
}
has been broken because the DS is now wrapped by LeaseCheckDocumentStoreWrapper. Figure out a different way to obtain the information.
Attachments
Attachments
Issue Links
- relates to
-
OAK-3390 Avoid instanceof check in DocumentNodeStore
- Closed