Skip to content

Commit

Permalink
CORE-19732 Mark unused configuration values as deprecated. (#1517)
Browse files Browse the repository at this point in the history
  • Loading branch information
owenstanford authored Feb 19, 2024
1 parent 8b62b1c commit 867a576
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@
"minimum": 1
},
"heartbeatEnabled": {
"description": "Whether heartbeat messages should be sent or not between peers to detect unhealthy sessions.",
"description": "Deprecated (not used). Whether heartbeat messages should be sent or not between peers to detect unhealthy sessions.",
"type": "boolean",
"default": true
},
"heartbeatMessagePeriod": {
"description": "The heartbeat message period in milliseconds.",
"description": "Deprecated (not used). The heartbeat message period in milliseconds.",
"type": "integer",
"default": 2000,
"minimum": 500
Expand All @@ -95,13 +95,13 @@
"minimum": 500
},
"sessionsPerPeer": {
"description": "Deprecated field, numOfSessionsPerPeer should be used instead. The number of actively maintained sessions between two peers.",
"description": "Deprecated (not used). The number of actively maintained sessions between two peers.",
"type": ["integer", "null"],
"default": null,
"minimum": 1
},
"numOfSessionsPerPeer": {
"description": "The number of actively maintained sessions between two peers.",
"description": "Deprecated (not used). The number of actively maintained sessions between two peers.",
"type": "object",
"default": {},
"properties": {
Expand Down Expand Up @@ -144,7 +144,7 @@
}
},
"sessionRefreshThreshold": {
"description": "The session refresh threshold in seconds. The default value is five days.",
"description": "Deprecated (not used). The session refresh threshold in seconds. The default value is five days.",
"type": "integer",
"default": 432000,
"maximum": 432000
Expand Down

0 comments on commit 867a576

Please sign in to comment.