LegacyRegionManagerImpl#inactivateRegion locks the parent's entire subtree
--------------------------------------------------------------------------
Key: JBCACHE-1609
URL: https://issues.jboss.org/browse/JBCACHE-1609
Project: JBoss Cache
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Locking
Affects Versions: 3.2.8.GA
Reporter: Dennis Reed
Assignee: Dennis Reed
LegacyRegionManagerImpl#inactivateRegion calls lockManager.lockAll on the parent node,
so instead of just locking the parent while the region is inactivated, it locks the parent's
entire subtree (the entire cache if the region is a child of the root).
In combination with JBCACHE-1608, this causes inactivateRegion to lock the parent's entire
subtree and never unlock it.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
LegacyRegionManagerImpl releases locks from other threads
---------------------------------------------------------
Key: JBCACHE-1607
URL: https://issues.jboss.org/browse/JBCACHE-1607
Project: JBoss Cache
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Locking
Affects Versions: 3.2.8.GA
Reporter: Dennis Reed
Assignee: Dennis Reed
LegacyRegionManagerImpl calls lockManager.unlockAll(NodeSPI) instead of lockManager.unlockAll(NodeSPI, Owner owner).
This will cause it to remove any locks currently held by other threads.
Due to JBCACHE- lockManager.unlockAll(NodeSPI) is broken, so the effects are limited to the specific node.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
NullPointerException in ResourceDMBean.invoke()
-----------------------------------------------
Key: JBCACHE-1604
URL: https://issues.jboss.org/browse/JBCACHE-1604
Project: JBoss Cache
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: JMX
Affects Versions: 3.2.7.GA
Reporter: Takayoshi Kimura
Assignee: Manik Surtani
Priority: Minor
ResourceDMBean.invoke(String name, Object[] args, String[] sig) throws NullPointerException when sig == null. JMX spec doesn't guarantee it's non-null, so we should check it.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
JBoss Cache MBean print* operations return Object's toString()
--------------------------------------------------------------
Key: JBCACHE-1523
URL: https://jira.jboss.org/jira/browse/JBCACHE-1523
Project: JBoss Cache
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Ondrej Žižka
Assignee: Manik Surtani
Priority: Minor
1) Run EAP 5, all config
2) Go to JMX console, jboss.cache:config=ha-partition,service=Cache
3) Invoke print* operations.
Cache details: "/ null", as HTML / null<br/>
"Print configuration" returns only java.lang.Object's toString(), e.g. org.jboss.cache.config.Configuration@af91c6fa
etc.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
JDBCCacheLoader doesn't work with Oracle
----------------------------------------
Key: JBCACHE-1610
URL: https://issues.jboss.org/browse/JBCACHE-1610
Project: JBoss Cache
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Cache loaders
Affects Versions: 3.2.8.GA
Reporter: Dennis Reed
Assignee: Dennis Reed
The Oracle driver throws the exception "java.sql.SQLException: ORA-01461: can bind a LONG value only for insert into a LONG column"
when the cacheloader tries to save more than a couple KB of data
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
JBoss Cache NonManagedConnectionFactory will log the password in clear text when an exception occurs
----------------------------------------------------------------------------------------------------
Key: JBCACHE-1612
URL: https://issues.jboss.org/browse/JBCACHE-1612
Project: JBoss Cache
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Cache loaders
Affects Versions: 3.2.8.GA
Environment: all
Reporter: Tom Fonteyne
Assignee: Manik Surtani
http://anonsvn.jboss.org/repos/jbosscache/core/trunk/src/main/java/org/jb...
088 public Connection getConnection()
089 {
......
099 catch (SQLException e)
100 {
101 reportAndRethrowError("Failed to get connection for url=" + url + ", user=" + usr + ", password=" + pwd, e);
So upon a connection error, the user/password will end up in the logfile in clear text
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
Concurrency issues with multiple threads calling cache.start
------------------------------------------------------------
Key: JBCACHE-1605
URL: https://issues.jboss.org/browse/JBCACHE-1605
Project: JBoss Cache
Issue Type: Bug
Security Level: Public (Everyone can see)
Affects Versions: 3.2.8.GA
Reporter: Dennis Reed
Assignee: Dennis Reed
There is no synchronization on cache.start, and concurrent calls to start the same cache cause errors.
This is particularly an issue in AS 5, where caches are retrieved from the EAP CacheManager
and the first user of the cache must start it.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira