[
https://issues.apache.org/jira/browse/OAK-3389?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14743082#comment-14743082
]
Marcel Reutegger commented on OAK-3389:
---------------------------------------
Disabled lease check in oak-run RDBFixture as a temporary workaround:
http://svn.apache.org/r1702864
> oak-run check for dropped tables broken
> ---------------------------------------
>
> Key: OAK-3389
> URL: https://issues.apache.org/jira/browse/OAK-3389
> Project: Jackrabbit Oak
> Issue Type: Technical task
> Components: rdbmk, run
> Affects Versions: 1.3.5
> Reporter: Julian Reschke
> Attachments: OAK-3389.patch
>
>
> @Override
> public void tearDownCluster() {
> String dropped = "";
> for (DocumentMK kernel : kernels) {
> kernel.dispose();
> if (kernel.getDocumentStore() instanceof
> RDBDocumentStore) {
> dropped +=
> ((RDBDocumentStore)kernel.getDocumentStore()).getDroppedTables();
> }
> }
> if (dropDBAfterTest) {
> if(blobStoreFixture != null){
> blobStoreFixture.tearDown();
> }
> 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.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)