From 61992827729cb91c4dd2b32def4cb8bfcafe4d89 Mon Sep 17 00:00:00 2001 From: Tiago Castro Date: Fri, 11 Mar 2022 16:12:18 +0000 Subject: [PATCH] chore: increase default number of max namespaces per node to 2k --- mayastor/src/subsys/config/opts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mayastor/src/subsys/config/opts.rs b/mayastor/src/subsys/config/opts.rs index 7673b1dfa..2de1c5d2a 100644 --- a/mayastor/src/subsys/config/opts.rs +++ b/mayastor/src/subsys/config/opts.rs @@ -99,7 +99,7 @@ impl Default for NvmfTgtConfig { fn default() -> Self { Self { name: "mayastor_target".to_string(), - max_namespaces: 110, + max_namespaces: 2048, opts: NvmfTcpTransportOpts::default(), } }