This is an automated email from the ASF dual-hosted git repository.
jensdeppe pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git
The following commit(s) were added to refs/heads/develop by this push:
new 7187192 GEODE-7533: System Properties catalina.home and catalina.base
are cleared during webapp reloads when using HTTP Session Management Module
(#4414)
7187192 is described below
commit 71871922567c873db0fa00b7d2c95334f10291bb
Author: thefire <[email protected]>
AuthorDate: Tue Dec 17 05:17:50 2019 -0700
GEODE-7533: System Properties catalina.home and catalina.base are cleared
during webapp reloads when using HTTP Session Management Module (#4414)
---
.../main/java/org/apache/geode/internal/cache/InternalHttpService.java | 2 --
1 file changed, 2 deletions(-)
diff --git
a/geode-http-service/src/main/java/org/apache/geode/internal/cache/InternalHttpService.java
b/geode-http-service/src/main/java/org/apache/geode/internal/cache/InternalHttpService.java
index 902c065..598f0b8 100644
---
a/geode-http-service/src/main/java/org/apache/geode/internal/cache/InternalHttpService.java
+++
b/geode-http-service/src/main/java/org/apache/geode/internal/cache/InternalHttpService.java
@@ -245,8 +245,6 @@ public class InternalHttpService implements HttpService {
ignore.getMessage(), ignore);
} finally {
this.httpServer = null;
- System.clearProperty("catalina.base");
- System.clearProperty("catalina.home");
}
}
}