Skip to content

Commit

Permalink
set default value for replicationGroupId
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerkesni committed Nov 20, 2024
1 parent 799c138 commit 9ed7032
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/config.joi.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const logSourcesJoi = joi.string().valid('bucketd', 'mongo', 'ingestion',
'dmd', 'kafka');

const joiSchema = joi.object({
replicationGroupId: joi.string().length(7).required(),
replicationGroupId: joi.string().length(7).default('RG00001'),
zookeeper: {
connectionString: joi.string().required(),
autoCreateNamespace: joi.boolean().default(false),
Expand Down

0 comments on commit 9ed7032

Please sign in to comment.