chore: Change default max_queue_size to 1000 (#2771)

This commit is contained in:
Alex Kremer
2025-11-11 16:37:00 +00:00
committed by GitHub
parent be9f0615fa
commit 893daab8f8
3 changed files with 3 additions and 3 deletions

View File

@@ -328,7 +328,7 @@ getClioConfig()
.withConstraint(gValidateUint32)},
{"server.ip", ConfigValue{ConfigType::String}.withConstraint(gValidateIp)},
{"server.port", ConfigValue{ConfigType::Integer}.withConstraint(gValidatePort)},
{"server.max_queue_size", ConfigValue{ConfigType::Integer}.defaultValue(1).withConstraint(gValidateUint32)},
{"server.max_queue_size", ConfigValue{ConfigType::Integer}.defaultValue(1000).withConstraint(gValidateUint32)},
{"server.local_admin", ConfigValue{ConfigType::Boolean}.optional()},
{"server.admin_password", ConfigValue{ConfigType::String}.optional()},
{"server.processing_policy",