Skip to content

Commit

Permalink
Merge pull request #576 from adamretter/test-fix
Browse files Browse the repository at this point in the history
[bugfix] Make sure to always shutdown the database
  • Loading branch information
dizzzz committed Apr 6, 2015
2 parents da88869 + 84efeb5 commit 24638a5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/src/org/exist/storage/RangeIndexUpdateTest.java
Expand Up @@ -230,10 +230,10 @@ public static void cleanup() {
} catch (Exception e) {
e.printStackTrace();
fail(e.getMessage());
}

BrokerPool.stopAll(false);
pool = null;
docs = null;
} finally {
BrokerPool.stopAll(false);
pool = null;
docs = null;
}
}
}

0 comments on commit 24638a5

Please sign in to comment.