From 980cb7f1e2b40256508cee92a25f223b288ffb15 Mon Sep 17 00:00:00 2001 From: nikinagy Date: Wed, 8 Nov 2023 15:22:11 +0000 Subject: [PATCH] address comments --- .../p2p.linkManager/1.0/corda.p2p.linkManager.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/config-schema/src/main/resources/net/corda/schema/configuration/p2p.linkManager/1.0/corda.p2p.linkManager.json b/data/config-schema/src/main/resources/net/corda/schema/configuration/p2p.linkManager/1.0/corda.p2p.linkManager.json index b14cb7a46d..25876b8c05 100644 --- a/data/config-schema/src/main/resources/net/corda/schema/configuration/p2p.linkManager/1.0/corda.p2p.linkManager.json +++ b/data/config-schema/src/main/resources/net/corda/schema/configuration/p2p.linkManager/1.0/corda.p2p.linkManager.json @@ -101,13 +101,13 @@ "default": {}, "properties": { "forMgm": { - "description": "The number of actively maintained sessions between two peers if one of them is an MGM.", + "description": "The number of actively maintained sessions between two peers if one of them is an MGM. Communication between an MGM and a member is not considered critical and so the default value of 1 is recommended to improve performance.", "type": "integer", "default": 1, "minimum": 1 }, "forMembers": { - "description": "The number of actively maintained sessions between two peers if both peers are members.", + "description": "The number of actively maintained sessions between two peers if both peers are members. The default value of 2 is recommended because the chance of both sessions failing on the same link manager is relatively low. If high-availability is critical, R3 recommends deploying multiple link manager instances instead.", "type": "integer", "default": 2, "minimum": 1