Skip to content

Commit

Permalink
revert configuration change
Browse files Browse the repository at this point in the history
  • Loading branch information
Roiocam committed Feb 6, 2024
1 parent d20e39a commit b9b046d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions actor-typed/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pekko.actor.typed {
# buffer. If the capacity is exceed then additional incoming messages are dropped.
restart-stash-capacity = 1000

# Typed mailbox defaults to the single consumber mailbox as balancing dispatcher is not supported
# Typed mailbox defaults to the single consumer mailbox as balancing dispatcher is not supported
default-mailbox {
mailbox-type = "org.apache.pekko.dispatch.SingleConsumerOnlyUnboundedMailbox"
}
Expand Down Expand Up @@ -73,7 +73,7 @@ pekko.reliable-delivery {
# To avoid head of line blocking from serialization and transfer
# of large messages this can be enabled.
# Large messages are chunked into pieces of the given size in bytes. The
# chunked messages are sent separatetely and assembled on the consumer side.
# chunked messages are sent separately and assembled on the consumer side.
# Serialization and deserialization is performed by the ProducerController and
# ConsumerController respectively instead of in the remote transport layer.
chunk-large-messages = off
Expand Down
6 changes: 3 additions & 3 deletions actor/src/main/resources/reference.conf
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@ pekko {
# Probability of doing an exploration v.s. optimization.
chance-of-exploration = 0.4

# When downsizing after a long streak of underutilization, the resizer
# will downsize the pool to the highest utiliziation multiplied by a
# When downsizing after a long streak of under-utilization, the resizer
# will downsize the pool to the highest utilization multiplied by a
# a downsize ratio. This downsize ratio determines the new pools size
# in comparison to the highest utilization.
# E.g. if the highest utilization is 10, and the down size ratio
Expand Down Expand Up @@ -1349,7 +1349,7 @@ pekko {
# In order to skip this additional delay set as 0
random-factor = 0.0

# A allowlist of fqcn of Exceptions that the CircuitBreaker
# A allow-list of fqcn of Exceptions that the CircuitBreaker
# should not consider failures. By default all exceptions are
# considered failures.
exception-allowlist = []
Expand Down

0 comments on commit b9b046d

Please sign in to comment.