Commit 4b8c2317 authored by Tom Evans's avatar Tom Evans Committed by tevans

OF-590 Updated session page to ignore all cluster session validation exceptions

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@13370 b35dd754-fafc-0310-a699-88a17e54d16e
parent 0d10c6d4
......@@ -252,7 +252,7 @@
for (ClientSession sess : sessions) {
try { // skip invalid sessions (OF-590)
if (!sess.validate()) continue;
} catch (IllegalStateException ise) {
} catch (Exception ex) {
continue;
}
count++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment