Ravi Nori has uploaded a new change for review. Change subject: core : Users cannot log into UserPortal ......................................................................
core : Users cannot log into UserPortal Issue with user login using Active Directory. After first failed login (bad/expire passwd) no other user from ad can login to the system. Change-Id: I2d7b169263581ea7c69bac4c503d804e14e944db Bug-Url: https://bugzilla.redhat.com/994604 Signed-off-by: Ravi Nori <[email protected]> --- M backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/adbroker/serverordering/LdapServersNoOpOrderingAlgorithm.java 1 file changed, 11 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/38/17838/1 diff --git a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/adbroker/serverordering/LdapServersNoOpOrderingAlgorithm.java b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/adbroker/serverordering/LdapServersNoOpOrderingAlgorithm.java index 7843fee..3d79396 100644 --- a/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/adbroker/serverordering/LdapServersNoOpOrderingAlgorithm.java +++ b/backend/manager/modules/bll/src/main/java/org/ovirt/engine/core/bll/adbroker/serverordering/LdapServersNoOpOrderingAlgorithm.java @@ -5,6 +5,17 @@ public class LdapServersNoOpOrderingAlgorithm extends LdapServersOrderingAlgorithm { + /** + * Override this since parent removes the server from the list and the + * reorderImpl implementation of this class does not add the server + * back to the list. So we end up with empty list of ldap servers. + * @param server + * @param servers + */ + @Override + public void reorder(URI server, List<URI> servers) { + } + @Override protected void reorderImpl(URI server, List<URI> restOfServers) { } -- To view, visit http://gerrit.ovirt.org/17838 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I2d7b169263581ea7c69bac4c503d804e14e944db Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: ovirt-engine-3.3 Gerrit-Owner: Ravi Nori <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
