Skip to content

Commit

Permalink
Tweaked drop policy to be less aggressive on the other system
Browse files Browse the repository at this point in the history
  • Loading branch information
drewhk committed Jun 21, 2013
1 parent 41d8986 commit b7a3419
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ object AkkaProtocolStressTest {

class AkkaProtocolStressTest extends AkkaSpec(configA) with ImplicitSender with DefaultTimeout {

val systemB = ActorSystem("systemB", system.settings.config)
val systemB = ActorSystem(
"systemB",
ConfigFactory.parseString("akka.remote.maximum-retries-in-window = 10").withFallback(system.settings.config))
val remote = systemB.actorOf(Props(new Actor {
def receive = {
case seq: Int sender ! seq
Expand Down

0 comments on commit b7a3419

Please sign in to comment.