Bug 1070709 - POA_QUEUE_MAX is limited to 200 in EAP 5 a value of 500 was possible
Summary: POA_QUEUE_MAX is limited to 200 in EAP 5 a value of 500 was possible
Keywords:
Status: CLOSED CURRENTRELEASE
Alias: None
Product: JBoss Enterprise Application Platform 6
Classification: JBoss
Component: IIOP
Version: 6.2.0
Hardware: Unspecified
OS: Unspecified
unspecified
unspecified
Target Milestone: ER8
: EAP 6.3.0
Assignee: Chao Wang
QA Contact: Martin Svehla
URL: https://c.na7.visual.force.com/apex/C...
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2014-02-27 12:11 UTC by Shaun Appleton
Modified: 2018-12-06 15:58 UTC (History)
5 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2014-08-06 14:35:43 UTC
Type: Bug
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Issue Tracker WFLY-3499 0 Minor Resolved POA_QUEUE_MAX is limited to 200 in EAP 5 a value of 500 was possible 2015-12-17 11:29:10 UTC

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.


Note You need to log in before you can comment on or make changes to this bug.