Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Bartel2015-12-18 03:26:14 +0000
committerJan Bartel2015-12-18 03:26:14 +0000
commit163a59a18c8c8406a9f0f0f7b701c81335e4624f (patch)
treef6db108f2ec381d261b163464c0c628b445afe89 /jetty-security/src/main/java
parent4ce2104a70b8add0767fc2fad4fbd1c3dd40e6e2 (diff)
parent133e9e054d1a6a3a16eb602cbdfd3f86f3c87572 (diff)
downloadorg.eclipse.jetty.project-163a59a18c8c8406a9f0f0f7b701c81335e4624f.tar.gz
org.eclipse.jetty.project-163a59a18c8c8406a9f0f0f7b701c81335e4624f.tar.xz
org.eclipse.jetty.project-163a59a18c8c8406a9f0f0f7b701c81335e4624f.zip
Merge branch 'master' into session-refactor
Diffstat (limited to 'jetty-security/src/main/java')
-rw-r--r--jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java b/jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java
index 108ca0ad6f..ae5efe4ee0 100644
--- a/jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java
+++ b/jetty-security/src/main/java/org/eclipse/jetty/security/HashLoginService.java
@@ -199,5 +199,8 @@ public class HashLoginService extends AbstractLoginService
protected void doStop() throws Exception
{
super.doStop();
+ if (_propertyUserStore != null)
+ _propertyUserStore.stop();
+ _propertyUserStore = null;
}
}

Back to the top