Removing legacy configuration message resend shenanigans
This commit is contained in:
parent
1756b6aa54
commit
0b9c8bd248
5 changed files with 1 additions and 16 deletions
|
|
@ -3,5 +3,4 @@ akka.event-handlers = ["akka.testkit.TestEventListener"]
|
|||
akka.event-handler-level = "WARNING"
|
||||
akka.actor.deployment.service-test.router = "round-robin"
|
||||
akka.actor.deployment.service-test.cluster.preferred-nodes = ["node:node2","node:node3"]
|
||||
akka.actor.deployment.service-test.nr-of-instances = 2
|
||||
akka.remote.client.buffering.retry-message-send-on-failure = false
|
||||
akka.actor.deployment.service-test.nr-of-instances = 2
|
||||
|
|
@ -3,4 +3,3 @@ akka.event-handler-level = "WARNING"
|
|||
akka.actor.deployment.service-test.router = "round-robin"
|
||||
akka.actor.deployment.service-test.cluster.preferred-nodes = ["node:node2","node:node3"]
|
||||
akka.actor.deployment.service-test.nr-of-instances = 2
|
||||
akka.remote.client.buffering.retry-message-send-on-failure = false
|
||||
|
|
|
|||
|
|
@ -3,4 +3,3 @@ akka.event-handler-level = "WARNING"
|
|||
akka.actor.deployment.service-test.router = "round-robin"
|
||||
akka.actor.deployment.service-test.cluster.preferred-nodes = ["node:node2","node:node3"]
|
||||
akka.actor.deployment.service-test.nr-of-instances = 2
|
||||
akka.remote.client.buffering.retry-message-send-on-failure = false
|
||||
|
|
|
|||
|
|
@ -128,16 +128,6 @@ akka {
|
|||
}
|
||||
|
||||
client {
|
||||
buffering {
|
||||
# Should message buffering on remote client error be used (buffer flushed
|
||||
# on successful reconnect)
|
||||
retry-message-send-on-failure = off
|
||||
|
||||
# If negative (or zero) then an unbounded mailbox is used (default)
|
||||
# If positive then a bounded mailbox is used and the capacity is set using
|
||||
# the property
|
||||
capacity = -1
|
||||
}
|
||||
reconnect-delay = 5s
|
||||
read-timeout = 3600s
|
||||
message-frame-size = 1 MiB
|
||||
|
|
|
|||
|
|
@ -34,8 +34,6 @@ class RemoteConfigSpec extends AkkaSpec("akka.cluster.nodename = node1") {
|
|||
getBytes("akka.remote.server.max-total-memory-size") must equal(0)
|
||||
|
||||
//akka.remote.client
|
||||
getBoolean("akka.remote.client.buffering.retry-message-send-on-failure") must equal(false)
|
||||
getInt("akka.remote.client.buffering.capacity") must equal(-1)
|
||||
getMilliseconds("akka.remote.client.reconnect-delay") must equal(5 * 1000)
|
||||
getMilliseconds("akka.remote.client.read-timeout") must equal(3600 * 1000)
|
||||
getMilliseconds("akka.remote.client.reconnection-time-window") must equal(600 * 1000)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue