Skip to content

Commit

Permalink
GEODE-10308: Close the cache after stopping the Tomcat container (#7739)
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen21 authored Jun 1, 2022
1 parent 96113d1 commit e75e228
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,6 @@ public void setUp() throws Exception {

@After
public void tearDown() {
clientCache.close();
clientCache = null;
port = -1;

server.stopContainer();
Expand All @@ -115,5 +113,7 @@ public void tearDown() {
sessionManager = null;
region = null;

clientCache.close();
clientCache = null;
}
}

0 comments on commit e75e228

Please sign in to comment.