Skip to content

Commit

Permalink
part of akkadotnet#3786 - fixed issue with multiple specs all trying …
Browse files Browse the repository at this point in the history
…to use same Akka.Remote port at the same time
  • Loading branch information
Aaronontheweb committed Jun 4, 2019
1 parent 00b73df commit 27e1156
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ public class RemoteConsistentHashingRouterSpec : AkkaSpec
{

public RemoteConsistentHashingRouterSpec()
: base(@"akka.actor.provider = ""Akka.Remote.RemoteActorRefProvider, Akka.Remote""")
: base(@"akka.actor.provider = ""Akka.Remote.RemoteActorRefProvider, Akka.Remote""
akka.remote.dot-netty.tcp.port = 0")
{

}
Expand Down
1 change: 1 addition & 0 deletions src/core/Akka.Remote.Tests/Transport/AkkaProtocolSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ public class AkkaProtocolSpec : AkkaSpec
public AkkaProtocolSpec(ITestOutputHelper helper)
: base(@"
akka.actor.provider = remote
akka.remote.dot-netty.tcp.port = 0
akka.test.default-timeout = 1.5 s", helper)
{
codec = new AkkaPduProtobuffCodec(Sys);
Expand Down

0 comments on commit 27e1156

Please sign in to comment.