diff --git a/akka-actor/src/main/resources/reference.conf b/akka-actor/src/main/resources/reference.conf index 4884e7045d..41e1abb16a 100644 --- a/akka-actor/src/main/resources/reference.conf +++ b/akka-actor/src/main/resources/reference.conf @@ -41,8 +41,8 @@ akka { # Toggles whether threads created by this ActorSystem should be daemons or not daemonic = off - # JVM shutdown, System.exit(-1), in case of a fatal error, such as - # OutOfMemoryError + # JVM shutdown, System.exit(-1), in case of a fatal error, + # such as OutOfMemoryError jvm-exit-on-fatal-error = on actor { @@ -107,8 +107,8 @@ akka { # resizer below router = "from-code" - # number of children to create in case of a non-direct router; this - # setting is ignored if routees.paths is given + # number of children to create in case of a non-direct router; + # this setting is ignored if routees.paths is given nr-of-instances = 1 # within is the timeout used for routers containing future calls @@ -231,8 +231,8 @@ akka { # Max number of threads to cap factor-based number to core-pool-size-max = 64 - # Minimum number of threads to cap factor-based max number to (if using - # a bounded task queue) + # Minimum number of threads to cap factor-based max number to + # (if using a bounded task queue) max-pool-size-min = 8 # Max no of threads (if using a bounded task queue) is determined by diff --git a/akka-cluster/src/main/resources/reference.conf b/akka-cluster/src/main/resources/reference.conf index 5ff4eaded9..4347f6c0b0 100644 --- a/akka-cluster/src/main/resources/reference.conf +++ b/akka-cluster/src/main/resources/reference.conf @@ -8,8 +8,8 @@ akka { cluster { - # Initial contact points of the cluster. The nodes to join at startup if - # auto-join = on. + # Initial contact points of the cluster. + # The nodes to join at startup if auto-join = on. # Comma separated full URIs defined by a string on the form of # "akka://system@hostname:port" # Leave as empty if the node should be a singleton cluster. diff --git a/akka-docs/rst/java/code/docs/actor/UntypedActorDocTestBase.java b/akka-docs/rst/java/code/docs/actor/UntypedActorDocTestBase.java index 1d7eef0de0..95da8a7cd1 100644 --- a/akka-docs/rst/java/code/docs/actor/UntypedActorDocTestBase.java +++ b/akka-docs/rst/java/code/docs/actor/UntypedActorDocTestBase.java @@ -202,8 +202,8 @@ public class UntypedActorDocTestBase { ActorRef actorRef = system.actorOf(new Props(MyUntypedActor.class)); //#gracefulStop try { - Future stopped = gracefulStop(actorRef, - Duration.create(5, TimeUnit.SECONDS), system); + Future stopped = + gracefulStop(actorRef, Duration.create(5, TimeUnit.SECONDS), system); Await.result(stopped, Duration.create(6, TimeUnit.SECONDS)); // the actor has been stopped } catch (AskTimeoutException e) { diff --git a/akka-docs/rst/java/code/docs/camel/sample/http/HttpSample.java b/akka-docs/rst/java/code/docs/camel/sample/http/HttpSample.java index 6e5ea677af..ce5b72d03d 100644 --- a/akka-docs/rst/java/code/docs/camel/sample/http/HttpSample.java +++ b/akka-docs/rst/java/code/docs/camel/sample/http/HttpSample.java @@ -6,8 +6,8 @@ public class HttpSample { public static void main(String[] args) { //#HttpExample // Create the actors. this can be done in a Boot class so you can - // run the example in the MicroKernel. just add the three lines to below - // your boot class. + // run the example in the MicroKernel. Just add the three lines below + // to your boot class. ActorSystem system = ActorSystem.create("some-system"); final ActorRef httpTransformer = system.actorOf(new Props(HttpTransformer.class)); diff --git a/akka-docs/rst/scala/code/docs/camel/HttpExample.scala b/akka-docs/rst/scala/code/docs/camel/HttpExample.scala index 9bd9f56a6d..4181607a52 100644 --- a/akka-docs/rst/scala/code/docs/camel/HttpExample.scala +++ b/akka-docs/rst/scala/code/docs/camel/HttpExample.scala @@ -39,8 +39,8 @@ object HttpExample { } // Create the actors. this can be done in a Boot class so you can - // run the example in the MicroKernel. just add the three lines below to - // your boot class. + // run the example in the MicroKernel. Just add the three lines below + // to your boot class. val system = ActorSystem("some-system") val httpTransformer = system.actorOf(Props[HttpTransformer]) val httpProducer = system.actorOf(Props(new HttpProducer(httpTransformer))) diff --git a/akka-durable-mailboxes/akka-file-mailbox/src/main/resources/reference.conf b/akka-durable-mailboxes/akka-file-mailbox/src/main/resources/reference.conf index b11bce2b3b..66f125e624 100644 --- a/akka-durable-mailboxes/akka-file-mailbox/src/main/resources/reference.conf +++ b/akka-durable-mailboxes/akka-file-mailbox/src/main/resources/reference.conf @@ -37,8 +37,8 @@ akka { # maximum overflow (multiplier) of a journal file before we re-create it. max-journal-overflow = 10 - # absolute maximum size of a journal file until we rebuild it, no matter - # what. + # absolute maximum size of a journal file until we rebuild it, + # no matter what. max-journal-size-absolute = 9223372036854775807 bytes # whether to drop older items (instead of newer) when the queue is full diff --git a/akka-remote/src/main/resources/reference.conf b/akka-remote/src/main/resources/reference.conf index 9e9e8214a6..a70106a8b2 100644 --- a/akka-remote/src/main/resources/reference.conf +++ b/akka-remote/src/main/resources/reference.conf @@ -67,12 +67,12 @@ akka { # Timeout for ACK of cluster operations, like checking actor out etc. remote-daemon-ack-timeout = 30s - # If this is "on", Akka will log all inbound messages at DEBUG level, if off - # then they are not logged + # If this is "on", Akka will log all inbound messages at DEBUG level, + # if off then they are not logged log-received-messages = off - # If this is "on", Akka will log all outbound messages at DEBUG level, if off - # then they are not logged + # If this is "on", Akka will log all outbound messages at DEBUG level, + # if off then they are not logged log-sent-messages = off # If this is "on", Akka will log all RemoteLifeCycleEvents at the level