Rename akka to pekko in configuration (#63)
Resolves https://github.com/apache/incubator-pekko/issues/54
This commit is contained in:
parent
708da8caec
commit
3d93dbcb81
1047 changed files with 4472 additions and 4464 deletions
|
|
@ -125,7 +125,7 @@ public class FlowDocTest extends AbstractJavaTest {
|
|||
final Object tick = new Object();
|
||||
|
||||
final Duration oneSecond = Duration.ofSeconds(1);
|
||||
// akka.actor.Cancellable
|
||||
// pekko.actor.Cancellable
|
||||
final Source<Object, Cancellable> timer = Source.tick(oneSecond, oneSecond, tick);
|
||||
|
||||
Sink.ignore().runWith(timer, system);
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ public class IntegrationDocTest extends AbstractJavaTest {
|
|||
+ " core-pool-size-max = 10 \n"
|
||||
+ " } \n"
|
||||
+ "} \n"
|
||||
+ "akka.actor.default-mailbox.mailbox-type = akka.dispatch.UnboundedMailbox\n");
|
||||
+ "pekko.actor.default-mailbox.mailbox-type = pekko.dispatch.UnboundedMailbox\n");
|
||||
|
||||
system = ActorSystem.create("IntegrationDocTest", config);
|
||||
ref = system.actorOf(Props.create(Translator.class));
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public class RecipeLoggingElements extends RecipeTest {
|
|||
ActorSystem.create(
|
||||
"RecipeLoggingElements",
|
||||
ConfigFactory.parseString(
|
||||
"akka.loglevel=DEBUG\nakka.loggers = [org.apache.pekko.testkit.TestEventListener]"));
|
||||
"pekko.loglevel=DEBUG\npekko.loggers = [org.apache.pekko.testkit.TestEventListener]"));
|
||||
}
|
||||
|
||||
@AfterClass
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ public class RecipeSourceFromFunction extends RecipeTest {
|
|||
ActorSystem.create(
|
||||
"RecipeSourceFromFunction",
|
||||
ConfigFactory.parseString(
|
||||
"akka.loglevel=DEBUG\nakka.loggers = [org.apache.pekko.testkit.TestEventListener]"));
|
||||
"pekko.loglevel=DEBUG\nakka.loggers = [org.apache.pekko.testkit.TestEventListener]"));
|
||||
}
|
||||
|
||||
@AfterClass
|
||||
|
|
|
|||
|
|
@ -40,33 +40,33 @@ public class Restart {
|
|||
forever.runWith(
|
||||
Sink.foreach((Creator<Integer> nr) -> system.log().info("{}", nr.create())), system);
|
||||
// logs
|
||||
// [INFO] [12/10/2019 13:51:58.300] [default-akka.test.stream-dispatcher-7]
|
||||
// [akka.actor.ActorSystemImpl(default)] 1
|
||||
// [INFO] [12/10/2019 13:51:58.301] [default-akka.test.stream-dispatcher-7]
|
||||
// [akka.actor.ActorSystemImpl(default)] 2
|
||||
// [INFO] [12/10/2019 13:51:58.302] [default-akka.test.stream-dispatcher-7]
|
||||
// [akka.actor.ActorSystemImpl(default)] 3
|
||||
// [WARN] [12/10/2019 13:51:58.310] [default-akka.test.stream-dispatcher-7]
|
||||
// [INFO] [12/10/2019 13:51:58.300] [default-pekko.test.stream-dispatcher-7]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 1
|
||||
// [INFO] [12/10/2019 13:51:58.301] [default-pekko.test.stream-dispatcher-7]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 2
|
||||
// [INFO] [12/10/2019 13:51:58.302] [default-pekko.test.stream-dispatcher-7]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 3
|
||||
// [WARN] [12/10/2019 13:51:58.310] [default-pekko.test.stream-dispatcher-7]
|
||||
// [RestartWithBackoffSource(akka://default)] Restarting graph due to failure. stack_trace:
|
||||
// (RuntimeException: darn)
|
||||
// --> 1 second gap
|
||||
// [INFO] [12/10/2019 13:51:59.379] [default-akka.test.stream-dispatcher-8]
|
||||
// [akka.actor.ActorSystemImpl(default)] 1
|
||||
// [INFO] [12/10/2019 13:51:59.382] [default-akka.test.stream-dispatcher-8]
|
||||
// [akka.actor.ActorSystemImpl(default)] 2
|
||||
// [INFO] [12/10/2019 13:51:59.383] [default-akka.test.stream-dispatcher-8]
|
||||
// [akka.actor.ActorSystemImpl(default)] 3
|
||||
// [WARN] [12/10/2019 13:51:59.386] [default-akka.test.stream-dispatcher-8]
|
||||
// [INFO] [12/10/2019 13:51:59.379] [default-pekko.test.stream-dispatcher-8]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 1
|
||||
// [INFO] [12/10/2019 13:51:59.382] [default-pekko.test.stream-dispatcher-8]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 2
|
||||
// [INFO] [12/10/2019 13:51:59.383] [default-pekko.test.stream-dispatcher-8]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 3
|
||||
// [WARN] [12/10/2019 13:51:59.386] [default-pekko.test.stream-dispatcher-8]
|
||||
// [RestartWithBackoffSource(akka://default)] Restarting graph due to failure. stack_trace:
|
||||
// (RuntimeException: darn)
|
||||
// --> 2 second gap
|
||||
// [INFO] [12/10/2019 13:52:01.594] [default-akka.test.stream-dispatcher-8]
|
||||
// [akka.actor.ActorSystemImpl(default)] 1
|
||||
// [INFO] [12/10/2019 13:52:01.595] [default-akka.test.stream-dispatcher-8]
|
||||
// [akka.actor.ActorSystemImpl(default)] 2
|
||||
// [INFO] [12/10/2019 13:52:01.595] [default-akka.test.stream-dispatcher-8]
|
||||
// [akka.actor.ActorSystemImpl(default)] 3
|
||||
// [WARN] [12/10/2019 13:52:01.596] [default-akka.test.stream-dispatcher-8]
|
||||
// [INFO] [12/10/2019 13:52:01.594] [default-pekko.test.stream-dispatcher-8]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 1
|
||||
// [INFO] [12/10/2019 13:52:01.595] [default-pekko.test.stream-dispatcher-8]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 2
|
||||
// [INFO] [12/10/2019 13:52:01.595] [default-pekko.test.stream-dispatcher-8]
|
||||
// [pekko.actor.ActorSystemImpl(default)] 3
|
||||
// [WARN] [12/10/2019 13:52:01.596] [default-pekko.test.stream-dispatcher-8]
|
||||
// [RestartWithBackoffSource(akka://default)] Restarting graph due to failure. stack_trace:
|
||||
// (RuntimeException: darn)
|
||||
// #restart-failure-inner-failure
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue