Skip to content

Commit

Permalink
chore(hapi): increase the limit to 150
Browse files Browse the repository at this point in the history
  • Loading branch information
Torresmorah committed Nov 30, 2022
1 parent 0fe60e1 commit 7aa98c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hapi/src/routes/get-producers-info.route.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = {
input: Joi.object({
bpParams: Joi.object({
type: Joi.string().valid('api', 'ssl', 'p2p').optional(),
owners: Joi.array().items(Joi.string().required()).max(100).optional()
owners: Joi.array().items(Joi.string().required()).max(150).optional()
}).required()
}).required()
}).options({ stripUnknown: true })
Expand Down

0 comments on commit 7aa98c2

Please sign in to comment.