Skip to content

Commit

Permalink
AS7-4105: Use the correct default for scan-interval
Browse files Browse the repository at this point in the history
  • Loading branch information
wfink authored and bstansberry committed Mar 8, 2012
1 parent 4325493 commit a53c0e6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -53,7 +53,7 @@ private DeploymentScannerDefinition() {
new SimpleAttributeDefinitionBuilder(CommonAttributes.SCAN_INTERVAL, ModelType.INT, true)
.setXmlName(Attribute.SCAN_INTERVAL.getLocalName())
.setAllowExpression(true)
.setDefaultValue(new ModelNode().set(5000))
.setDefaultValue(new ModelNode().set(0))
.build();
protected static final SimpleAttributeDefinition AUTO_DEPLOY_ZIPPED =
new SimpleAttributeDefinitionBuilder(CommonAttributes.AUTO_DEPLOY_ZIPPED, ModelType.BOOLEAN, true)
Expand Down

0 comments on commit a53c0e6

Please sign in to comment.