File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog for cardano-node
2
2
3
+ ## vNext
4
+
5
+ ### node changes
6
+
7
+ - So far the ` AcceptedConnectionLimit ` s from the configuration file where
8
+ ignored, the node always used the hard coded values. This is fixed in #4902 .
9
+
10
+ ### consensus changes
11
+
12
+ ### network changes
13
+
3
14
## 1.35.5 -- November 2022
4
15
5
16
### node changes
Original file line number Diff line number Diff line change @@ -375,12 +375,7 @@ handleSimpleNode runP p2pMode tracers nc onKernel = do
375
375
Just (ActualSocket localSocket) -> Just (Left localSocket)
376
376
Just (SocketInfo localAddr) -> Just (Right localAddr)
377
377
Nothing -> Nothing
378
- , Diffusion. daAcceptedConnectionsLimit =
379
- AcceptedConnectionsLimit
380
- { acceptedConnectionsHardLimit = 512
381
- , acceptedConnectionsSoftLimit = 384
382
- , acceptedConnectionsDelay = 5
383
- }
378
+ , Diffusion. daAcceptedConnectionsLimit = ncAcceptedConnectionsLimit nc
384
379
, Diffusion. daMode = ncDiffusionMode nc
385
380
}
386
381
You can’t perform that action at this time.
0 commit comments