From fa488ecc75144539031dfc487187e72fc7b0dfab Mon Sep 17 00:00:00 2001 From: kerr Date: Thu, 10 Jul 2014 16:36:29 +0800 Subject: [PATCH] =ben #15516 correct tell_commandPersist_reply test with right props --- .../main/scala/akka/persistence/PersistentActorBenchmark.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akka-bench-jmh/src/main/scala/akka/persistence/PersistentActorBenchmark.scala b/akka-bench-jmh/src/main/scala/akka/persistence/PersistentActorBenchmark.scala index 374710f0d1..65dad576ef 100644 --- a/akka-bench-jmh/src/main/scala/akka/persistence/PersistentActorBenchmark.scala +++ b/akka-bench-jmh/src/main/scala/akka/persistence/PersistentActorBenchmark.scala @@ -42,7 +42,7 @@ class PersistentActorThroughputBenchmark { storageLocations.foreach(FileUtils.deleteDirectory) actor = system.actorOf(Props(classOf[BaselineActor], data10k.last), "a-1") - persist1CommandProcessor = system.actorOf(Props(classOf[Persist1EventPersistentActor], data10k.last), "p-1") + persist1CommandProcessor = system.actorOf(Props(classOf[Persist1CommandProcessor], data10k.last), "p-1") persist1EventProcessor = system.actorOf(Props(classOf[Persist1EventPersistentActor], data10k.last), "ep-1") persistAsync1EventProcessor = system.actorOf(Props(classOf[PersistAsync1EventPersistentActor], data10k.last), "epa-1") persistAsync1QuickReplyEventProcessor = system.actorOf(Props(classOf[PersistAsync1EventQuickReplyPersistentActor], data10k.last), "epa-2")