[jboss-jira] [JBoss JIRA] Created: (JBAS-8651) Typo in ClusteringDefaultsDeployer make the global passivationMaxIdleTime prop not being picked up
Jean Deruelle (JIRA)
jira-events at lists.jboss.org
Fri Nov 19 05:05:07 EST 2010
Typo in ClusteringDefaultsDeployer make the global passivationMaxIdleTime prop not being picked up
--------------------------------------------------------------------------------------------------
Key: JBAS-8651
URL: https://jira.jboss.org/browse/JBAS-8651
Project: JBoss Application Server
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
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
More information about the jboss-jira
mailing list