Commit d2fd0963 authored by Daniel Henninger's avatar Daniel Henninger Committed by dhenninger

Fixed stupid bug with lock out manager.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/openfire_3_5_0@9977 b35dd754-fafc-0310-a699-88a17e54d16e
parent f343909a
...@@ -176,6 +176,9 @@ public class ClearspaceLockOutProvider implements LockOutProvider { ...@@ -176,6 +176,9 @@ public class ClearspaceLockOutProvider implements LockOutProvider {
return new LockOutFlag(username, null, null); return new LockOutFlag(username, null, null);
} }
} }
catch (NotLockedOutException e) {
throw e;
}
catch (Exception e) { catch (Exception e) {
// Hrm. This is not good. We have to opt on the side of positive. // Hrm. This is not good. We have to opt on the side of positive.
Log.error("Error while looking up user's disabled status from Clearspace: ", e); Log.error("Error while looking up user's disabled status from Clearspace: ", e);
......
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