Merge pull request #1421 from stianst/master

KEYCLOAK-1507
This commit is contained in:
Stian Thorgersen 2015-07-02 14:10:57 +02:00
commit ec3d027f90

View file

@ -127,7 +127,9 @@ public abstract class AbstractKeycloakAuthenticatorValve extends FormAuthenticat
}
protected void beforeStop() {
nodesRegistrationManagement.stop();
if (nodesRegistrationManagement != null) {
nodesRegistrationManagement.stop();
}
}
private static InputStream getJSONFromServletContext(ServletContext servletContext) {