Add response_timeout_seconds config

This commit is contained in:
Andras Schmelczer 2025-04-04 21:19:54 +01:00
parent 181ea4faef
commit 9a0b8a07bf
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 29 additions and 28 deletions

View file

@ -4,4 +4,5 @@ pub const DEFAULT_HOST: &str = "127.0.0.1";
pub const DEFAULT_PORT: u16 = 3000;
pub const DEFAULT_MAX_CONNECTIONS_PER_VAULT: u32 = 12;
pub const DEFAULT_MAX_BODY_SIZE_MB: usize = 4096;
pub const DEFAULT_RESPONSE_TIMEOUT_SECONDS: u64 = 60;
pub const DEFAULT_MAX_CLIENTS_PER_VAULT: usize = 256;