Project

General

Profile

bug #9358

Updated by Andreas Müller over 3 years ago

The bug in comment 1 appeared multiple times for ERS when editing taxa. 

 After some analyzes it appears that it is thrown client side as the following 2 lines  

 ~~~ 
 at eu.etaxonomy.cdm.cache.CdmTransientEntityCacher.load(CdmTransientEntityCacher.java:165) 
 at eu.etaxonomy.taxeditor.session.CdmEntitySession.load(CdmEntitySession.java:65) 
 at eu.etaxonomy.taxeditor.session.CdmEntitySessionManager.load(CdmEntitySessionManager.java:119) 
 at org.springframework.remoting.httpinvoker.CachingHttpInvokerProxyFactoryBean.handleGeneralRequest(CachingHttpInvokerProxyFactoryBean.java:100) 
 

 ~~~ 

 suggest, though the main exception suggests it is a http invoker exception and therefore server side. It looks like the call returned already but when calling the CdmEntitySessionManager to cache the entities the exception appears. 

 A reason might be that there wasn't enough disc space left for the ehcach on the local machine. So maybe we have to have a look on the ehcache disc space handling. Something similar was reported for working by the character matrix by Tilo some time ago. 

 Another reason could be that ehcach library version was updated during the last release and maybe there is some problem related.

Back