]
Radoslav Husar updated WFLY-3494:
---------------------------------
Summary: Inconsistent default values for max-entries and interval in model and XSD
(was: Inconsistent default values for eviction configuration max-entries in model and
XSD)
Inconsistent default values for max-entries and interval in model and
XSD
-------------------------------------------------------------------------
Key: WFLY-3494
URL:
https://issues.jboss.org/browse/WFLY-3494
Project: WildFly
Issue Type: Feature Request
Security Level: Public(Everyone can see)
Components: Clustering
Affects Versions: 8.0.0.Final
Reporter: Radoslav Husar
Assignee: Radoslav Husar
Fix For: 9.0.0.CR1
{code}
static final SimpleAttributeDefinition MAX_ENTRIES = new
SimpleAttributeDefinitionBuilder(ModelKeys.MAX_ENTRIES,
ModelType.INT, true)
.setXmlName(Attribute.MAX_ENTRIES.getLocalName())
.setAllowExpression(true)
.setFlags(AttributeAccess.Flag.RESTART_ALL_SERVICES)
.setDefaultValue(new ModelNode().set(-1))
.build()
;{code}
however
{code}
<xs:attribute name="max-entries" type="xs:int"
default="10000">
<xs:annotation>
<xs:documentation>Maximum number of entries in a cache instance. If
selected value is not a power of two the actual value will default to the least power of
two larger than selected value. -1 means no limit.</xs:documentation>
</xs:annotation>
</xs:attribute>
{code}