format source with scalafmt
This commit is contained in:
parent
0f40491d42
commit
ce404e4f53
1669 changed files with 43208 additions and 35404 deletions
|
|
@ -15,24 +15,23 @@ import org.scalatest.{ Outcome, Suite }
|
|||
object RemotingMultiNodeSpec {
|
||||
|
||||
def commonConfig =
|
||||
ConfigFactory.parseString(
|
||||
s"""
|
||||
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
|
||||
""").withFallback(ArterySpecSupport.tlsConfig) // TLS only used if transport=tls-tcp
|
||||
|
||||
}
|
||||
|
||||
abstract class RemotingMultiNodeSpec(config: MultiNodeConfig) extends MultiNodeSpec(config)
|
||||
with Suite
|
||||
with STMultiNodeSpec
|
||||
with FlightRecordingSupport
|
||||
with ImplicitSender
|
||||
with DefaultTimeout { self: MultiNodeSpec =>
|
||||
abstract class RemotingMultiNodeSpec(config: MultiNodeConfig)
|
||||
extends MultiNodeSpec(config)
|
||||
with Suite
|
||||
with STMultiNodeSpec
|
||||
with FlightRecordingSupport
|
||||
with ImplicitSender
|
||||
with DefaultTimeout { self: MultiNodeSpec =>
|
||||
|
||||
// Keep track of failure so we can print artery flight recording on failure
|
||||
private var failed = false
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue