We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ca5403 commit 03ea0a0Copy full SHA for 03ea0a0
src/org/opensolaris/opengrok/configuration/messages/ConfigMessage.java
@@ -55,7 +55,7 @@ protected byte[] applyMessage(RuntimeEnvironment env) throws IOException {
55
if (hasTag("getconf")) {
56
return env.getConfiguration().getXMLRepresentationAsString().getBytes();
57
} else if (hasTag("auth") && "reload".equalsIgnoreCase(getText())) {
58
- AuthorizationFramework.getInstance().reload();
+ env.getAuthorizationFramework().reload();
59
} else if (hasTag("set")) {
60
Matcher matcher = VARIABLE_PATTERN.matcher(getText());
61
if (matcher.find()) {
0 commit comments