Compare commits

..

2 Commits

Author SHA1 Message Date
chylex 02828a91c6
Migrate event log to Akka.NET 2024-03-23 00:21:39 +01:00
chylex 7cdb0a1910
Migrate RPC message handling to Akka.NET 2024-03-23 00:21:39 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ try {
var agentServices = new AgentServices(agentInfo, folders, new AgentServiceConfiguration(maxConcurrentBackupCompressionTasks), new ControllerConnection(rpcSocket.Connection));
await agentServices.Initialize();
using var actorSystem = ActorSystemFactory.Create("Web");
using var actorSystem = ActorSystemFactory.Create("Agent");
var rpcMessageHandlerInit = new ControllerMessageHandlerActor.Init(rpcSocket.Connection, agentServices, shutdownCancellationTokenSource);
var rpcMessageHandlerActor = actorSystem.ActorOf(ControllerMessageHandlerActor.Factory(rpcMessageHandlerInit), "ControllerMessageHandler");