Bug 1070709

Summary: POA_QUEUE_MAX is limited to 200 in EAP 5 a value of 500 was possible
Product: [JBoss] JBoss Enterprise Application Platform 6 Reporter: Shaun Appleton <sappleto>
Component: IIOPAssignee: Chao Wang <chaowan>
Status: CLOSED CURRENTRELEASE QA Contact: Martin Svehla <msvehla>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 6.2.0CC: brian.stansberry, chaowan, jdoyle, kkhan, msvehla
Target Milestone: ER8   
Target Release: EAP 6.3.0   
Hardware: Unspecified   
OS: Unspecified   
URL: https://c.na7.visual.force.com/apex/Case_View?id=500A000000HobRI
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-08-06 14:35:43 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Shaun Appleton 2014-02-27 12:11:43 UTC
Description of problem:
 POA_QUEUE_MAX is limited to 200  in EAP 5 a value of 500 was possible

The fix would appear to be to change line 249 in 

246     public static final SimpleAttributeDefinition POA_QUEUE_MAX = new SimpleAttributeDefinitionBuilder(
247             JacORBSubsystemConstants.POA_QUEUE_MAX, ModelType.INT, true)
248             .setDefaultValue(new ModelNode().set(100))
249             .setValidator(new IntRangeValidator(1, 200, true, false))
250             .setFlags(AttributeAccess.Flag.RESTART_ALL_SERVICES)
251             .setAllowExpression(true)
252             .build();


of org.jboss.as.jacorb.JacORBSubsystemDefinitions.java
to 


249             .setValidator(new IntRangeValidator(1, 1000, true, false))



Expected results:


Additional info:

Comment 3 Kabir Khan 2014-06-16 15:06:37 UTC
PR https://github.com/jbossas/jboss-eap/pull/1463

Comment 4 Martin Svehla 2014-07-10 10:58:05 UTC
Verified with EAP 6.3.0.ER9 - new maximum value for POA_QUEUE_MAX is 500.