[
https://issues.jboss.org/browse/JBAS-8651?page=com.atlassian.jira.plugin....
]
Jason Greene reopened JBAS-8651:
--------------------------------
Due to feedback from the community, I have split the AS7 and AS6 projects and reopened all
unscheduled AS6 issues that are a year or less old. This will make it easier community
members to find and work on them.
Future releases beyond 6.1 can be done provided a community member steps up to coordinate
them.
Typo in ClusteringDefaultsDeployer make the global
passivationMaxIdleTime prop not being picked up
--------------------------------------------------------------------------------------------------
Key: JBAS-8651
URL:
https://issues.jboss.org/browse/JBAS-8651
Project: Legacy JBoss Application Server 6
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Web (Tomcat) service
Affects Versions: JBossAS-5.1.0.GA
Reporter: Jean Deruelle
Assignee: Remy Maucherat
Priority: Minor
Fix For: No Release
in addPassivationConfigDefaults method of ClusteringDefaultsDeployer
line 246 contains a bad copy paste
if (passCfg.getPassivationMinIdleTime() == null)
passCfg.setPassivationMaxIdleTime(new Integer(this.passivationMaxIdleTime));
it should be
if (passCfg.getPassivationMaxIdleTime() == null)
passCfg.setPassivationMaxIdleTime(new Integer(this.passivationMaxIdleTime));
It affects EAP 5 version as well
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira