Skip to content

Commit

Permalink
TcpTransport classs instead of DotNettyTransport class in hocon confi…
Browse files Browse the repository at this point in the history
…guration (#5982)
  • Loading branch information
dengia committed Jun 6, 2022
1 parent 420fd61 commit 1032308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/articles/configuration/config.md
Expand Up @@ -62,7 +62,7 @@ For example, let's configure an `ActorSystem` with HOCON:
```csharp
var config = ConfigurationFactory.ParseString(@"
akka.remote.dot-netty.tcp {
transport-class = ""Akka.Remote.Transport.DotNetty.DotNettyTransport, Akka.Remote""
transport-class = ""Akka.Remote.Transport.DotNetty.TcpTransport, Akka.Remote""
transport-protocol = tcp
port = 8091
hostname = ""127.0.0.1""
Expand Down Expand Up @@ -124,7 +124,7 @@ Here's an example of using HOCON inside `App.config`:
# here we're configuring the Akka.Remote module
remote {
dot-netty.tcp {
transport-class = "Akka.Remote.Transport.DotNetty.DotNettyTransport, Akka.Remote"
transport-class = "Akka.Remote.Transport.DotNetty.TcpTransport, Akka.Remote"
#applied-adapters = []
transport-protocol = tcp
port = 8091
Expand Down

0 comments on commit 1032308

Please sign in to comment.