remove test config of old flight recorder (#28800)

This commit is contained in:
Patrik Nordwall 2020-03-25 13:32:19 +01:00 committed by GitHub
parent 04396d9c30
commit bf6576ce79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 15 deletions

View file

@ -32,7 +32,6 @@ class ClusterWatcherNoClusterWatcheeConfig(val useUnsafe: Boolean, artery: Boole
akka.remote.use-unsafe-remote-features-outside-cluster = $useUnsafe
akka.remote.log-remote-lifecycle-events = off
akka.remote.artery.enabled = $artery
akka.remote.artery.advanced.flight-recorder.enabled = off
akka.log-dead-letters = off
akka.loggers =["akka.testkit.TestEventListener"]
akka.actor.allow-java-serialization = on

View file

@ -4,7 +4,6 @@
package akka.cluster
import java.util.UUID
import java.util.concurrent.ConcurrentHashMap
import akka.actor.{ Actor, ActorRef, ActorSystem, Address, Deploy, PoisonPill, Props, RootActorPath }
@ -60,10 +59,6 @@ object MultiNodeClusterSpec {
akka.log-dead-letters-during-shutdown = off
akka.remote {
log-remote-lifecycle-events = off
artery.advanced.flight-recorder {
enabled=on
destination=target/flight-recorder-${UUID.randomUUID().toString}.afr
}
}
akka.loggers = ["akka.testkit.TestEventListener"]
akka.test {

View file

@ -29,7 +29,6 @@ class ClusterRemoteFeaturesConfig(artery: Boolean) extends MultiNodeConfig {
akka.remote.log-remote-lifecycle-events = off
akka.remote.artery.enabled = $artery
akka.remote.artery.canonical.port = 0
akka.remote.artery.advanced.flight-recorder.enabled = off
akka.log-dead-letters-during-shutdown = off
""").withFallback(MultiNodeClusterSpec.clusterConfig)

View file

@ -43,7 +43,6 @@ class RemotingFeaturesConfig(val useUnsafe: Boolean, artery: Boolean) extends Mu
akka.remote.use-unsafe-remote-features-outside-cluster = $useUnsafe
akka.remote.log-remote-lifecycle-events = off
akka.remote.artery.enabled = $artery
akka.remote.artery.advanced.flight-recorder.enabled = off
""").withFallback(RemotingMultiNodeSpec.commonConfig)
commonConfig(debugConfig(on = false).withFallback(baseConfig))

View file

@ -4,8 +4,6 @@
package akka.remote
import java.util.UUID
import akka.remote.artery.ArterySpecSupport
import akka.remote.testkit.{ MultiNodeConfig, MultiNodeSpec, STMultiNodeSpec }
import akka.testkit.{ DefaultTimeout, ImplicitSender }
@ -17,10 +15,6 @@ object RemotingMultiNodeSpec {
def commonConfig =
ConfigFactory.parseString(s"""
akka.actor.warn-about-java-serializer-usage = off
akka.remote.artery.advanced.flight-recorder {
enabled=on
destination=target/flight-recorder-${UUID.randomUUID().toString}.afr
}
""").withFallback(ArterySpecSupport.tlsConfig) // TLS only used if transport=tls-tcp
}

View file

@ -35,7 +35,6 @@ object RemoteFeaturesSpec {
akka.remote.use-unsafe-remote-features-outside-cluster = $useUnsafe
akka.remote.artery.enabled = on
akka.remote.artery.canonical.port = 0
akka.remote.artery.advanced.flight-recorder.enabled = off
akka.log-dead-letters-during-shutdown = off
"""