Skip to content

Commit

Permalink
fix: fix config regression in reference.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
fhussonnois committed May 30, 2022
1 parent a396f5b commit 20eac32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/resources/reference.conf
Expand Up @@ -75,25 +75,25 @@ jikkou {
# The default validation rules to apply on any specification files.
validations = [
{
type = TopicConfigKeysValidation
type = io.streamthoughts.jikkou.api.validations.TopicConfigKeysValidation
config = {}
},
{
type = TopicNameRegexValidation
type = io.streamthoughts.jikkou.api.validations.TopicNameRegexValidation
config = {
topic-name-regex = "[a-zA-Z0-9\\._\\-]+"
topic-name-regex = ${?VALIDATION_DEFAULT_TOPIC_NAME_REGEX}
}
},
{
type = TopicMinNumPartitionsValidation
type = io.streamthoughts.jikkou.api.validations.TopicMinNumPartitionsValidation
config = {
topic-min-num-partitions = 1
topic-min-num-partitions = ${?VALIDATION_DEFAULT_TOPIC_MIN_NUM_PARTITIONS}
}
},
{
type = TopicMinReplicationFactorValidation
type = io.streamthoughts.jikkou.api.validations.TopicMinReplicationFactorValidation
config = {
topic-min-replication-factor = 1
topic-min-replication-factor = ${?VALIDATION_DEFAULT_TOPIC_MIN_REPLICATION_FACTOR}
Expand Down

0 comments on commit 20eac32

Please sign in to comment.