[JBoss JIRA] Created: (JBCACHE-1329) double removal on optimistic locking
by Mircea Markus (JIRA)
double removal on optimistic locking
------------------------------------
Key: JBCACHE-1329
URL: http://jira.jboss.com/jira/browse/JBCACHE-1329
Project: JBoss Cache
Issue Type: Feature Request
Security Level: Public (Everyone can see)
Affects Versions: 2.1.0.GA, 2.1.0.CR4
Reporter: Mircea Markus
Assigned To: Manik Surtani
Fix For: 2.1.1.GA, 2.2.0.GA
Following test to reproduce:
public void testDoubleRemovalOfData2() throws Exception
{
cache.put("/foo/1/2", "item", 1);
tm.begin();
assertEquals(cache.get("/foo/1", "item"), null);
cache.removeNode("/foo/1");
assertNull(cache.get("/foo/1", "item"));
cache.removeNode("/foo/1/2");
assertNull(cache.get("/foo/1", "item"));
tm.commit();
assertFalse(cache.exists("/foo/1"));
assertNull(cache.get("/foo/1/2", "item"));
assertNull(cache.get("/foo/1", "item"));
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 3 months
[JBoss JIRA] Created: (JBPORTAL-1994) Identity Admin Portlet ignores exceptions during password update
by Martin Putz (JIRA)
Identity Admin Portlet ignores exceptions during password update
----------------------------------------------------------------
Key: JBPORTAL-1994
URL: http://jira.jboss.com/jira/browse/JBPORTAL-1994
Project: JBoss Portal
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Portal Security
Affects Versions: 2.6.4 Final
Environment: LDAP authentication against MS Active Directory
Reporter: Martin Putz
Assigned To: Thomas Heute
When updating the LDAP password, replacing the old password by a new one consisting of 6 spaces, for instance, this causes an exception because such a password violates the password policy in the ADS.
But Identity admin portlet pretends to have been updated the password successfully. The exception is caught somewhere and appears only in the server log.
Actually the old password remains unchanged.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 3 months