hoconConfig.WithFallback(fallbackHoconConfig)
hoconConfig
, it will be searched in fallbackHoconConfig
ActorSystem.Create("sys")
this is actually a shorter form of ActorSystem.Create("sys", ConfigurationFactory.Load())
which loads config from web.config
I have some issues with TestKit and xunit console runner. When I run my tests through VS they pass fine, but when using the console runner (as my CI tool does) they fail. The tests cases are basically doing the following:
[WARNING][2016-10-07 13:29:56][Thread 0005][akka://test/user/$c] Unhandled message from [akka://test/user/testActor1#360950702]: Common.Models.Messages.Worker.Parse
And that basically causes the test to fail. Would that indicate that the message is sent before the actor under test has been created?
ExpectOneMsg<Foo>()
?
hashPool -> process actors -> broadcastGroup
. The hash pool at the top is what complicates things because it remotely deploys the process actors. that is what makes the actor selection so difficult for me to configure for the broadcast group.