increase max worker connections to 5

This commit is contained in:
Ruben Fiszel
2024-05-03 08:39:51 +02:00
parent 25ba9ce245
commit c88cf18ccd
+1 -1
View File
@@ -45,7 +45,7 @@ pub mod workspaces;
pub mod tracing_init;
pub const DEFAULT_MAX_CONNECTIONS_SERVER: u32 = 50;
pub const DEFAULT_MAX_CONNECTIONS_WORKER: u32 = 4;
pub const DEFAULT_MAX_CONNECTIONS_WORKER: u32 = 5;
pub const DEFAULT_HUB_BASE_URL: &str = "https://hub.windmill.dev";