Ensure SessionData attributes are cast to ConcurrentHashMap on deserialization.
This commit is contained in:
parent
fe5cc7a336
commit
68f27bbb40
|
@ -282,7 +282,7 @@ public class SessionData implements Serializable
|
|||
_lastNode = in.readUTF(); //last managing node
|
||||
_expiry = in.readLong();
|
||||
_maxInactiveMs = in.readLong();
|
||||
_attributes = (HashMap<String,Object>)in.readObject();
|
||||
_attributes = (ConcurrentHashMap<String,Object>)in.readObject();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue