| Alex Karasulu (JIRA) 2006-02-27, 7:45 am |
| PSearch sends results of old binding instead of new binding with changeType of modify
-------------------------------------------------------------------------------------
Key: DIRSERVER-587
URL: http://issues.apache.org/jira/browse/DIRSERVER-587
Project: Directory ApacheDS
Type: Bug
Components: ldap
Versions: 1.0-RC1
Reporter: Alex Karasulu
Fix For: 1.0-RC2
PersistentSearchListener incorrectly sends the old bindings of the NamingEvent instead of the new binding when responding to a modify operation. The error is on line 219. Can't fix right now but line 219 should be changed to the following:
respEntry.setObjectName( evt.getNewBinding().getName() );
respEntry.setAttributes( ( Attributes ) evt.getNewBinding().getObject() );
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secur...nistrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|