dependabot-preview[bot] on nuget
dependabot-preview[bot] on dev
Bump MongoDB.Driver from 2.9.1 … (compare)
dependabot-preview[bot] on nuget
Bump MongoDB.Driver from 2.9.1 … (compare)
dependabot-preview[bot] on nuget
dependabot-preview[bot] on dev
Bump Microsoft.NET.Test.Sdk fro… (compare)
@webeoutrascoisas thanks. I understand that officially not from nuget but based on some article you are able to get an "unofficial" version to work since 1.2.0-alpha1 ? Or am I mistaken?
I read it from here https://medium.com/@FurryMogwai/building-a-basket-micro-service-using-asp-net-core-and-akka-net-ea2a32ca59d5
@Silv3rcircl3 i couldnt find akka core library in myget. So i download @alexvaluyskiy https://github.com/alexvaluyskiy/akka.net/tree/coreclr_final branch and compile it myself for todays meetup. Because of Google.ProtocolBuffers library i couldnt compile cluster and remote to .net core but Akka.Core local actor system can work on .net core.
I made an example repo ;
[Fact]
public void Should_probe_replace_actor_selection_and_forward()
{
var testProbe = CreateTestProbe("FindMeWithSelectionProbe");
var actor = Sys.ActorOf(Props.Create(() => new FindMeWithSelectionActor()), "FindMeWithSelection");
var selection = Sys.ActorSelection(testProbe.Ref.Path);
selection.Tell("Hi!");
testProbe.ExpectMsg("Hi!");
testProbe.Forward(actor);
}
Hi all,
a NLog question: with NLog is it possible to define 2 or more different logfiles.
<rules>
<logger name="AkkaLog" minlevel="Debug" writeTo="logfile1" />
<logger name="myLogFile" minlevel="Debug" writeTo="logfile2" />
</rules>
Using the same config file for Akka doesn't work, nothing is logged from Akka, I think Akka expects the name = "" like:
<rules>
<logger name="" minlevel="Debug" writeTo="logfile1" />
</rules>
Is it possible to define in HOCON the name of the logfile for Akka ?
akka.cluster.auto-down-unreachable-after = <X>sec
to be able to mark stale unreachable nodes to be marked as dead