Skip to content

Commit 7270e19

Browse files
authored
Merge pull request #1652 from tulinkry/auth-watchdog-status
adding more info about authorization into status.jsp
2 parents f6ef203 + e78112b commit 7270e19

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/org/opensolaris/opengrok/web/Util.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -887,7 +887,10 @@ public static void dumpConfiguration(Appendable out) throws IOException,
887887
env.isAllowLeadingWildcard());
888888
printTableRow(out, "History cache", HistoryGuru.getInstance()
889889
.getCacheInfo());
890-
printTableRow(out, "Authorization", "<pre>" + env.getAuthorizationFramework().getStack().hierarchyToString() + "</pre>");
890+
printTableRow(out, "Authorization plugin directory", env.getPluginDirectory());
891+
printTableRow(out, "Authorization watchdog directory", env.getPluginDirectory());
892+
printTableRow(out, "Authorization watchdog enabled", env.isAuthorizationWatchdog());
893+
printTableRow(out, "Authorization stack", "<pre>" + env.getAuthorizationFramework().getStack().hierarchyToString() + "</pre>");
891894
out.append("</table>");
892895
}
893896

0 commit comments

Comments
 (0)