Skip to content

Commit

Permalink
Merge pull request #2301 from bencaradocdavies/geos-8122-8123-master
Browse files Browse the repository at this point in the history
[GEOS-8122][GEOS-8123] Fixes for FileUtils.deleteDirectory test failures
  • Loading branch information
aaime committed May 3, 2017
2 parents 187a337 + 4e4e733 commit 52d748a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gwc/src/main/java/org/geoserver/gwc/GWC.java
Expand Up @@ -178,7 +178,7 @@ public class GWC implements DisposableBean, InitializingBean, ApplicationContext
/**
* @see #getResponseEncoder(MimeType, RenderedImageMap)
*/
private static Map<String, Response> cachedTileEncoders = new HashMap<String, Response>();
private Map<String, Response> cachedTileEncoders = new HashMap<String, Response>();

private final TileLayerDispatcher tld;

Expand Down
Expand Up @@ -276,7 +276,7 @@ protected void destroyGeoServer() {
if (applicationContext == null) {
return;
}

getGeoServer().dispose();
try {
//dispose WFS XSD schema's - they will otherwise keep geoserver instance alive forever!!
disposeIfExists(getXSD11());
Expand Down

0 comments on commit 52d748a

Please sign in to comment.