File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/org/opensolaris/opengrok/web Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -887,7 +887,10 @@ public static void dumpConfiguration(Appendable out) throws IOException,
887
887
env .isAllowLeadingWildcard ());
888
888
printTableRow (out , "History cache" , HistoryGuru .getInstance ()
889
889
.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>" );
891
894
out .append ("</table>" );
892
895
}
893
896
You can’t perform that action at this time.
0 commit comments