Skip to content

Commit 03ea0a0

Browse files
author
Vladimir Kotal
authored
fix merge of 8ca5403 for e181bd2 (#1607)
1 parent 8ca5403 commit 03ea0a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/opensolaris/opengrok/configuration/messages/ConfigMessage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected byte[] applyMessage(RuntimeEnvironment env) throws IOException {
5555
if (hasTag("getconf")) {
5656
return env.getConfiguration().getXMLRepresentationAsString().getBytes();
5757
} else if (hasTag("auth") && "reload".equalsIgnoreCase(getText())) {
58-
AuthorizationFramework.getInstance().reload();
58+
env.getAuthorizationFramework().reload();
5959
} else if (hasTag("set")) {
6060
Matcher matcher = VARIABLE_PATTERN.matcher(getText());
6161
if (matcher.find()) {

0 commit comments

Comments
 (0)