=rem #17583 Increase default value of system-message-buffer-size

(cherry picked from commit 8cdf837c1f36edbd3b4d5cecaec8928e6b9c4994)
This commit is contained in:
Patrik Nordwall 2015-05-27 14:37:18 +02:00
parent 078019c906
commit ecd19ecf06
2 changed files with 2 additions and 2 deletions

View file

@ -251,7 +251,7 @@ akka {
# This setting defines the maximum number of unacknowledged system messages
# allowed for a remote system. If this limit is reached the remote system is
# declared to be dead and its UID marked as tainted.
system-message-buffer-size = 1000
system-message-buffer-size = 20000
# This setting defines the maximum idle time after an individual
# acknowledgement for system messages is sent. System message delivery

View file

@ -39,7 +39,7 @@ class RemoteConfigSpec extends AkkaSpec(
LogBufferSizeExceeding should ===(50000)
SysMsgAckTimeout should ===(0.3 seconds)
SysResendTimeout should ===(2 seconds)
SysMsgBufferSize should ===(1000)
SysMsgBufferSize should ===(20000)
InitialSysMsgDeliveryTimeout should ===(3 minutes)
QuarantineDuration should ===(5 days)
CommandAckTimeout.duration should ===(30 seconds)