Enable flight recorder in tests #21205
* Setting to configure where the flight recorder puts its file * Run ArteryMultiNodeSpecs with flight recorder enabled * More cleanup in exit hook, wait for task runner to stop * Enable flight recorder for the cluster multi node tests * Enable flight recorder for multi node remoting tests * Toggle always-dump flight recorder output when akka.remote.artery.always-dump-flight-recorder is set
This commit is contained in:
parent
8de56a52b6
commit
392ca5ecce
36 changed files with 380 additions and 134 deletions
|
|
@ -18,7 +18,7 @@ class LookupRemoteActorMultiJvmSpec(artery: Boolean) extends MultiNodeConfig {
|
|||
commonConfig(debugConfig(on = false).withFallback(
|
||||
ConfigFactory.parseString(s"""
|
||||
akka.remote.artery.enabled = $artery
|
||||
""")))
|
||||
""")).withFallback(MultiNodeRemotingSpec.arteryFlightRecordingConf))
|
||||
|
||||
val master = role("master")
|
||||
val slave = role("slave")
|
||||
|
|
@ -39,8 +39,8 @@ object LookupRemoteActorSpec {
|
|||
}
|
||||
}
|
||||
|
||||
abstract class LookupRemoteActorSpec(multiNodeConfig: LookupRemoteActorMultiJvmSpec) extends MultiNodeSpec(multiNodeConfig)
|
||||
with STMultiNodeSpec with ImplicitSender with DefaultTimeout {
|
||||
abstract class LookupRemoteActorSpec(multiNodeConfig: LookupRemoteActorMultiJvmSpec)
|
||||
extends MultiNodeRemotingSpec(multiNodeConfig) {
|
||||
import multiNodeConfig._
|
||||
import LookupRemoteActorSpec._
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue