Skip to content

Commit

Permalink
Add possible value
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Jun 8, 2024
1 parent b8753b4 commit dea9d1d
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions testrunner/config/default.yaml
Original file line number Diff line number Diff line change
@@ -42,8 +42,8 @@ redis:
port: null
host: null
password: jgsay7f2fgfgda6acCa7g()jaba51!
tls: undefined

tls: null
# Verbose log level or not
log:
verbose: false
3 changes: 2 additions & 1 deletion testrunner/src/validateconfig.js
Original file line number Diff line number Diff line change
@@ -37,7 +37,8 @@ const locationSchema = Joi.object({
const redisSchema = Joi.object({
port: Joi.number().allow(null),
host: Joi.string().allow(null),
password: Joi.string().allow(null)
password: Joi.string().allow(null),
tls: Joi.boolean().allow(null).optional()
});

// Logging schema

0 comments on commit dea9d1d

Please sign in to comment.