fix: increase default max conn of a worker to 4

This commit is contained in:
Ruben Fiszel
2024-02-06 15:33:05 +01:00
parent 368cba405d
commit 001d02e725
+1 -1
View File
@@ -42,7 +42,7 @@ pub mod workspaces;
pub mod tracing_init;
pub const DEFAULT_MAX_CONNECTIONS_SERVER: u32 = 50;
pub const DEFAULT_MAX_CONNECTIONS_WORKER: u32 = 3;
pub const DEFAULT_MAX_CONNECTIONS_WORKER: u32 = 4;
lazy_static::lazy_static! {
pub static ref METRICS_PORT: u16 = std::env::var("METRICS_PORT")