Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: dms-2.3-final
-
Component/s: component.workflow
-
- Environment:
-
OSX
Issue Links
| Depends | |||
|---|---|---|---|
|
|||
The clearSubject method has not been fixed properly, we still have
25 juin 2009 16:43:25 org.ow2.novabpm.identity.auth.SecurityContext clearSubject
ATTENTION: clearSubject() called but subject is already null!
Indeed in the code of BonitaStorageLoginModule we have:
if(subject != null) SecurityContext.clearSubject();
the local value of "subject" is never null
so we should have something like this:
if (SecurityContext.getSubject() != null) SecurityContext.clearSubject();