Bug 32867

Summary: context distributable property is not modified during reloading
Product: Tomcat 5 Reporter: Stephane Bailliez <sbailliez>
Component: CatalinaAssignee: Tomcat Developers Mailing List <dev>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P2    
Version: 5.0.30   
Target Milestone: ---   
Hardware: PC   
OS: All   

Description Stephane Bailliez 2004-12-28 21:51:39 UTC
The digester rule only set the distributable property to true when the 
<distributable/> element exists in the application.

This is not a big problem but unfortunately, as the context instance is 
recycled, if you remove the <distributable/> property, the context will still 
hold the previous value (ie the context set as distributable)
Comment 1 Yoav Shapira 2005-03-25 04:57:21 UTC
Added resetting of distributable to initial value (false) in
StandardContext#resetContext method.  Thanks for pointing this out.