* Config to exclude class prefix from serialize-messages, #24273 * Adding no-serialization-verification-needed-class-prefix, with "akka." included by default * This is important now when we disable Java serialization by default. There will be many complaints about Akka internal classes that are not marked with NoSerializationVerificationNeeded, and we can't really sprinkle that everywhere. * Not removing NoSerializationVerificationNeeded usage in Akka classes because that may break bin compat, even though it's needed any more. * fix DisabledJavaSerializerWarningSpec
This commit is contained in:
parent
4f9a4b5403
commit
a7c43cf573
100 changed files with 105 additions and 235 deletions
|
|
@ -35,7 +35,6 @@ object PerformanceSpec extends MultiNodeConfig {
|
|||
akka.remote.classic.log-frame-size-exceeding=1000b
|
||||
akka.testconductor.barrier-timeout = 60 s
|
||||
akka.cluster.distributed-data.gossip-interval = 1 s
|
||||
akka.actor.serialize-messages = off
|
||||
|
||||
#akka.cluster.distributed-data.durable.keys = ["*"]
|
||||
#akka.cluster.distributed-data.durable.lmdb.dir = target/PerformanceSpec-${System.currentTimeMillis}-ddata
|
||||
|
|
|
|||
|
|
@ -26,9 +26,6 @@ object ReplicatorMapDeltaSpec extends MultiNodeConfig {
|
|||
akka.loglevel = INFO
|
||||
akka.actor.provider = "cluster"
|
||||
akka.log-dead-letters-during-shutdown = off
|
||||
akka.actor {
|
||||
serialize-messages = off
|
||||
}
|
||||
"""))
|
||||
|
||||
testTransport(on = true)
|
||||
|
|
|
|||
|
|
@ -23,9 +23,6 @@ object ReplicatorORSetDeltaSpec extends MultiNodeConfig {
|
|||
akka.loglevel = INFO
|
||||
akka.actor.provider = "cluster"
|
||||
akka.log-dead-letters-during-shutdown = off
|
||||
akka.actor {
|
||||
serialize-messages = off
|
||||
}
|
||||
"""))
|
||||
|
||||
testTransport(on = true)
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
akka.actor {
|
||||
serialize-messages = off
|
||||
}
|
||||
|
||||
|
|
@ -35,9 +35,6 @@ class ReplicatedDataSerializerSpec
|
|||
akka.actor.provider=cluster
|
||||
akka.remote.classic.netty.tcp.port=0
|
||||
akka.remote.artery.canonical.port = 0
|
||||
akka.actor {
|
||||
serialize-messages = off
|
||||
}
|
||||
""")))
|
||||
with WordSpecLike
|
||||
with Matchers
|
||||
|
|
|
|||
|
|
@ -39,9 +39,6 @@ class ReplicatorMessageSerializerSpec
|
|||
akka.actor.provider=cluster
|
||||
akka.remote.classic.netty.tcp.port=0
|
||||
akka.remote.artery.canonical.port = 0
|
||||
akka.actor {
|
||||
serialize-messages = off
|
||||
}
|
||||
""")))
|
||||
with WordSpecLike
|
||||
with Matchers
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue