Skip to content

Commit 8ee19a1

Browse files
committed
Change max alertThreshold
1 parent f11e142 commit 8ee19a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/tls/do/sut.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ internals.sutSchema = Joi.object({
3535
id: Joi.string().alphanum().required(),
3636
attributes: Joi.object({
3737
tlsScannerSeverity: Joi.string().valid(...internals.configSchemaProps.sut._cvtProperties.tlsScannerSeverity.format).uppercase(), // eslint-disable-line no-underscore-dangle
38-
alertThreshold: Joi.number().integer().min(0).max(1000).default(config.get('sut.alertThreshold'))
38+
alertThreshold: Joi.number().integer().min(0).max(9999).default(config.get('sut.alertThreshold'))
3939
})
4040
})
4141
});

0 commit comments

Comments
 (0)